What are the hidden features of jQuery?
See also: Hidden features of javascript
|
12
|
What are the hidden features of jQuery? See also: Hidden features of javascript |
||||||||||
|
|
|
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] |
|||
|
|
|
|
You can set up data in a dialog component Something like
|
|||
|
|
|
|
Here is some good stuff: http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/ |
||
|
|
|
|
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. |
||
|
|
|
|
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 |
||
|
|