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 to prefix …

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

  3. 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) solutions are quite …

  4. Disable/enable an input with jQuery? - Stack Overflow

    Sep 12, 2009 · $input.disabled = true; or $input.disabled = "disabled"; Which is the standard way? And, conversely, how do you enable a disabled input?

  5. 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 be sent …

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

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

  7. How do I check if an element is hidden in jQuery? - Stack Overflow

    Oct 7, 2008 · How do I toggle the visibility of an element using .hide(), .show(), or .toggle()? How do I test if an element is visible or hidden?

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

  9. Get selected text from a drop-down list (select box) using jQuery

    Oct 29, 2009 · How can I get the selected text (not the selected value) from a drop-down list in jQuery?

  10. How to use jQuery with Angular? - Stack Overflow

    Jun 3, 2015 · Learn how to integrate jQuery with Angular effectively, including tips and best practices for seamless implementation in your projects.