About 133,000 results
Open links in new tab
  1. jQuery $ (this) keyword - Stack Overflow

    Sep 18, 2012 · 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 …

  2. What is the purpose of the dollar sign in JavaScript?

    Mar 29, 2022 · 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 …

  3. How can I get the ID of an element using jQuery?

    The .selector property was deprecated in jQuery 1.7 and is only maintained to the extent needed for supporting .live () in the jQuery Migrate plugin. The property was never a reliable indicator …

  4. jquery - Set select option 'selected', by value - Stack Overflow

    I have a select field with some options in it. Now I need to select one of those options with jQuery. But how can I do that when I only know the value of the option that must be selected? I have the

  5. 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) …

  6. 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.

  7. What's the difference between '$ (this)' and 'this'? - Stack Overflow

    Each jQuery object constructed contains an array of elements which match the selector jQuery API that was used to instantiate the jQuery object. $(selector) calls the jQuery function …

  8. jquery - How to send a correct authorization header for basic ...

    Continue to help good content that is interesting, well-researched, and useful, rise to the top! To gain full voting privileges,

  9. Get selected value of a dropdown's item using jQuery

    May 6, 2010 · Learn how to get the selected value of a dropdown's item using jQuery with this guide.

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

    Sep 9, 2013 · The Jquery.ajax documentation says that there is a flag called processData that controls whether this encoding is done automatically or not. The documentation says that it …