About 124,000 results
Open links in new tab
  1. What is the purpose of the dollar sign in JavaScript?

    A '$' in a variable means nothing special to the interpreter, much like an underscore. From what I've seen, many people using jQuery (which is what your example code looks like to me) tend …

  2. What is the meaning of symbol $ in jQuery? - Stack Overflow

    Jun 26, 2009 · It is shorthand for jQuery (). Which you can use if you want. jQuery can be ran in compatibility mode if another library is using the $ already. Just use jQuery.noConflict (). $ is …

  3. javascript - Get checkbox value in jQuery - Stack Overflow

    May 14, 2010 · How can I get a checkbox's value in jQuery?

  4. jQuery $ (this) keyword - Stack Overflow

    Jan 21, 2021 · When inside a jQuery method’s anonymous callback function, this is a reference to the current DOM element. $ (this) turns this into a jQuery object and exposes jQuery’s …

  5. Is there a link to the "latest" jQuery library on Google APIs?

    Jan 14, 2009 · However, since jQuery 1.11.1, both jQuery and Google stopped updating these URLs; they will forever be fixed at 1.11.1. There is no supported alternative URL to use. For an …

  6. jQuery: Uncaught Error: Syntax error, unrecognized expression

    Oct 3, 2013 · jQuery: Uncaught Error: Syntax error, unrecognized expression Asked 12 years, 1 month ago Modified 2 years, 7 months ago Viewed 292k times

  7. Get all the values from input text and store them to an array

    I have an expierence with C# and PHP. Jquery has a pretty different behaviour, so please let me figure this out. I need to get the values of all the text fields and add them to an array. This is a …

  8. How can I select an element by name with jQuery?

    Jul 10, 2009 · jquery (E) solution is quite-fast on big tables jquery (E) and querySelectorAll (H) solutions are slowest for small tables getElementByName (G) and querySelectorAll (H) …

  9. How to create a jQuery function (a new jQuery method or plugin)?

    Aug 23, 2012 · Yup — what you’re describing is a jQuery plugin. To write a jQuery plugin, you create a function in JavaScript, and assign it to a property on the object jQuery.fn.

  10. jquery - How to pass parameters in $ajax POST? - Stack Overflow

    Sep 9, 2013 · Jquery.ajax does not encode POST data for you automatically the way that it does for GET data. Jquery expects your data to be pre-formated to append to the request body to …