up vote 21 down vote favorite
27
share [g+] share [fb]
1  
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
2  
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
1  
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/suggestions/29053 – Charles Roper Sep 24 '08 at 17:21
1  
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
9  
Whoever marked this offensive is a douchebag. – Will Oct 6 '08 at 14:53
show 2 more comments
feedback

closed as not constructive by Bill the Lizard Oct 29 '11 at 12:50

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

7 Answers

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|improve this answer
feedback

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|improve this answer
3  
As useful as the $(selector, context) can be, it internally calls .find(). Personally I find when reading code, $(context).find(selector) to make more sense than seeing $(selector, context). – gnarf Jul 27 '10 at 23:03
What is about $('#outer #inner') is not it the same as above? – Alexander Artemenko Jul 22 '11 at 8:46
@Alexander Artemenko - No, the above code will search ONLY the context for the matching elements, your version will search the entire document for any #inner that is a descendant of #outer. This first, a huge performance improvement (especially cause you frequently already have a reference to the context) and second, more flexible as you can build up the context over a series of steps. – George Mauer Jul 22 '11 at 19:47
feedback

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|improve this answer
1  
What exactly is wrong with $(selector).length ? It returns true, unless nothing matched. .exists() is one more character, and a unnecessary function call to replace a quick property lookup – gnarf Jul 27 '10 at 22:54
nothing... jquery's awesome in that it simplified down a lot of things that used to take many lines of code. jquery's not so awesome in that it's caused some of us to forget basic javascript... kinda like how many people seem to forget basic ansi C after having worked in C++ or Obj-C for awhile – pxl Oct 9 '10 at 20:29
feedback

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|improve this answer
This is handy because it extends to basically everything. – Earlz Jun 24 '10 at 23:08
Isn't that a part of jQuery UI? – George Edison Dec 16 '11 at 3:09
feedback

That jQuery is JavaScript.

You can use any and all JavaScript with jQuery.

link|improve this answer
1  
it's kind of sad how many people forget this. – GSto Oct 9 '10 at 21:56
I thought JavaScript was a jQuery plugin? – George Edison Dec 16 '11 at 3:07
feedback

jQuery's queue functions can be extremely useful.

Some example uses can be seen here: Can somebody explain jQuery queue to me?

link|improve this answer
feedback

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