vote up 8 vote down star
8
It also is not answerable with a single right answer, see: codeflow.org/sofaq/#cannot-be-answered – Florian Bösch Sep 23 '08 at 16:14
I think this should be re-opened. The hidden features questions are a real asset to SOF. – Charles Roper Sep 24 '08 at 16:53
I've created a uservoice request asking for the FAQ to be updated so that polls like this aren't shot down: stackoverflow.uservoice.com/pages/general/… – Charles Roper Sep 24 '08 at 17:21
Agreed. I've added RSS feeds to all of the "hidden-features" threads for languages/technologies that I use. – CMPalmer Sep 25 '08 at 5:11
Whoever marked this offensive is a douchebag. – Will Oct 6 '08 at 14:53
show 2 more comments

4 Answers

vote up 4 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

Here is some good stuff:

http://james.padolsey.com/javascript/things-you-may-not-know-about-jquery/

link|flag
vote up 0 vote down

You can set up data in a dialog component

Something like

$("#dialog").dialog({
    "someData":"someData",
    buttons:{
        "Is there some data":function() {
            alert($(this).dialog("option", "someData"));
        }
    }
});
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.