Hidden (or not widely known) features of jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T01:01:58Zhttp://stackoverflow.com/feeds/question/121965http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/121965/hidden-or-not-widely-known-features-of-jquery8Hidden (or not widely known) features of jQuerySerhat Özgel2008-09-23T16:00:26Z2009-10-07T21:23:00Z
<p>What are the hidden features of <a href="http://jquery.com/" rel="nofollow">jQuery</a>?</p>
<p>See also: <a href="http://stackoverflow.com/questions/61088/hidden-features-of-javascript">Hidden features of javascript</a></p>
http://stackoverflow.com/questions/121965/hidden-or-not-widely-known-features-of-jquery/207932#2079322Answer by Jeff Atwood for Hidden (or not widely known) features of jQueryJeff Atwood2008-10-16T09:31:12Z2008-10-16T09:31:12Z<p>There is no built in "exists" function for JQuery.. but there should be (and can be)!</p>
<p><a href="http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery">http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery</a></p>
http://stackoverflow.com/questions/121965/hidden-or-not-widely-known-features-of-jquery/501237#5012374Answer by Adam Bellaire for Hidden (or not widely known) features of jQueryAdam Bellaire2009-02-01T17:44:26Z2009-02-01T17:44:26Z<p>While the internal <a href="http://docs.jquery.com/Internals/jQuery.data" rel="nofollow">data() function</a> 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.</p>
<p>For example, one such use is to see the actions that jQuery has bound to an element in its event registry, as in <a href="http://stackoverflow.com/questions/442701/find-callback-functions-added-with-jquery-on-dom-elements/442835#442835">this answer</a>.</p>
http://stackoverflow.com/questions/121965/hidden-or-not-widely-known-features-of-jquery/569569#5695691Answer by Serhat Özgel for Hidden (or not widely known) features of jQuerySerhat Özgel2009-02-20T13:30:57Z2009-02-20T13:30:57Z<p>Here is some good stuff:</p>
<p><a href="http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/" rel="nofollow">http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/</a></p>
http://stackoverflow.com/questions/121965/hidden-or-not-widely-known-features-of-jquery/1534237#15342370Answer by Arthur Ronald F D Garcia for Hidden (or not widely known) features of jQueryArthur Ronald F D Garcia2009-10-07T21:15:35Z2009-10-07T21:23:00Z<p>You can set up data in a dialog component</p>
<p>Something like</p>
<pre><code>$("#dialog").dialog({
"someData":"someData",
buttons:{
"Is there some data":function() {
alert($(this).dialog("option", "someData"));
}
}
});
</code></pre>