What are the hidden features of jQuery?
See also: Hidden features of javascript
|
What are the hidden features of jQuery? See also: Hidden features of javascript | |||||||||||||||||||||
feedback
|
This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.
|
While the internal data() function is documented, its uses aren't. It's pretty general-purpose, as it allows you to see the data that jQuery has associated with any given elements. For example, one such use is to see the actions that jQuery has bound to an element in its event registry, as in this answer. | |||
|
feedback
|
|
Something I did not know until recently, you can select elements within another element in the DOM by passing a second parameter to the jQuery initializer
the inner div is selected by
Also not at all hidden, but I didn't know until recently that enumerating over a jQuery object returns DOM objects. Therefore, if want to get at the underlying DOM object wrapped inside a jQuery array you just do $('#outer')[0] | |||||||||
feedback
|
|
There is no built in "exists" function for JQuery.. but there should be (and can be)! http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery | |||||||
feedback
|
|
Here is some good stuff: http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/ | |||
|
feedback
|
|
You can set up data in a dialog component Something like
| |||||
|
feedback
|
|
That jQuery is JavaScript. You can use any and all JavaScript with jQuery. | |||||||
feedback
|
|
jQuery's queue functions can be extremely useful. Some example uses can be seen here: Can somebody explain jQuery queue to me? | ||||
|
feedback
|