About 131,000 results
Open links in new tab
  1. 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 …

  2. 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 …

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

  4. Why does jQuery or a DOM method such as getElementById not …

    What are the possible reasons for document.getElementById, $("#id") or any other DOM method / jQuery selector not finding the elements? Example problems include: jQuery silently failing to …

  5. JQuery | Forums

    Ask questions and report issues related to using jQuery. Discuss anything related to jQuery itself. For issues with plugins, ask in the jQuery Plugins forum.

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

  7. How do I check whether a checkbox is checked in jQuery?

    May 7, 2016 · I need to check the checked property of a checkbox and perform an action based on the checked property using jQuery. For example, if the age checkbox is checked, then I …

  8. What does the '#' character (number sign) mean in jQuery?

    Jun 5, 2012 · 17 That's jQuery and the pound sign (#) refers to an element's ID. It's one way jQuery can select an element. In your example, it would select the element with the ID of …

  9. How to loop through array in jQuery? - Stack Overflow

    Oct 15, 2010 · Advantages: Straight-forward, no dependency on jQuery, easy to understand, no issues with preserving the meaning of this within the body of the loop, no unnecessary …

  10. Submit a form using jQuery - Stack Overflow

    I want to submit a form using jQuery. Can someone provide the code, a demo or an example link?