vote up 9 vote down star
12
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

5 Answers

vote up 0 vote down

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

<div id="outer">
  <div id="inner"> </div>
</div

the inner div is selected by

$('#outer').find('#inner')
//or shorter:
$('#inner', $('#outer'))
//or even shorter:
$('#inner', '#outer')

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]

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
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 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 3 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

Your Answer

Get an OpenID
or

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