Hidden (or not widely known) features of jQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T01:01:58Z http://stackoverflow.com/feeds/question/121965 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/121965/hidden-or-not-widely-known-features-of-jquery 8 Hidden (or not widely known) features of jQuery Serhat Özgel 2008-09-23T16:00:26Z 2009-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#207932 2 Answer by Jeff Atwood for Hidden (or not widely known) features of jQuery Jeff Atwood 2008-10-16T09:31:12Z 2008-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#501237 4 Answer by Adam Bellaire for Hidden (or not widely known) features of jQuery Adam Bellaire 2009-02-01T17:44:26Z 2009-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#569569 1 Answer by Serhat Özgel for Hidden (or not widely known) features of jQuery Serhat Özgel 2009-02-20T13:30:57Z 2009-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#1534237 0 Answer by Arthur Ronald F D Garcia for Hidden (or not widely known) features of jQuery Arthur Ronald F D Garcia 2009-10-07T21:15:35Z 2009-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>