vote up 89 vote down star
137

In the spirit of all the meta-questions of tips and tricks for various languages:

No conflict-mode

jQuery.noConflict();

"Run this function to give control of the $ variable back to whichever library first implemented it. This helps to make sure that jQuery doesn't conflict with the $ object of other libraries.

By using this function, you will only be able to access jQuery using the jQuery variable. For example, where you used to do $("div p"), you now must do jQuery("div p")".

Shorthand for the ready event

Instead of writing:

$(document).ready(function (){
});

You can do:

$(function (){
});

Line breaks and chainability

Instead of doing:

$("a").hide().addClass().fadeIn().hide();

You can increase readability like so:

$("a")
.hide()
.addClass()
.fadeIn()
.hide();
flag
8  
Good for you throwing it in Wiki mode from the get-go – Chris Marasti-Georg Oct 8 '08 at 13:19
@Christ Marasti-Geord: Thanks. I'm not looking for easy reputation-points here :) – roosteronacid Oct 8 '08 at 13:22
Voting on a community post (up or down) does not affect any user's reputation... I don't get the easy reputation-points comment above... – Daok Oct 8 '08 at 13:35
Okay, moving the answers to the answers section was clearly not a popular move. Sorry, I was just trying to be helpful. – Patrick McElhaney Oct 8 '08 at 13:36
@Daok: Chris is saying exactly that. He is commending me for posting this question as a community wiki-post, and not as a normal post, which would give me points. – roosteronacid Oct 8 '08 at 13:37
show 2 more comments

24 Answers

vote up 33 vote down

I'm really not a fan of the $(document).ready(fn) shortcut. Sure it cuts down on the code but it also cuts way down on the readability of the code. When you see $(document).ready(...), you know what you're looking at. $(...) is used in far too many other ways to immediately make sense.

If you have multiple frameworks you can use jQuery.noConflict(); as you say, but you can also assign a different variable for it like this:

var $j = jQuery.noConflict();
$j('#myDiv').hide();

Very useful if you have several frameworks that can be boiled down to $x(...)-style calls.

link|flag
@Oli: About the document ready-shorthand; you have a point. But never the less: it is a tip/trick. One which I use in all my code purely because I think it "looks" better. A matter of personal preference, I guess :) – roosteronacid Oct 8 '08 at 13:19
Every day I wade through pointless XML/XLS/XLST, sites written with far too many layers of abstraction, complex fail-over systems on sites that will never outgrow the humblest of servers... and still people complain about the difference between $(<string>) & $(<function>). Makes me want to cry :) – JoeBloggs Dec 12 '08 at 11:20
vote up 2 vote down

Judicious use of third-party jQuery scripts, such as form field validation or url parsing. It's worth seeing what's about so you'll know when you next encounter a JavaScript requirement.

link|flag
vote up 4 vote down

I like declare a $this variable at the beginning of anonymous functions, so I know I can reference a jQueried this.

Like so:

jQuery('a').each(function() {
 var $this = jQuery(this);
});
link|flag
2  
I use "that" instead :) – roosteronacid Oct 12 '08 at 11:49
1  
ROA: Yeah, that'll be the acid :) You can also use arguments.callee to enable an anonymous function to reference itself – JoeBloggs Nov 27 '08 at 11:25
Joe - just a heads up, callee will be going away with ECMAScript 5 and strict mode. See: ejohn.org/blog/… – Mike Robinson Jun 26 at 15:19
vote up 5 vote down

Not really jQuery only but I made a nice little bridge for jQuery and MS AJAX:

Sys.UI.Control.prototype.j = function Sys$UI$Control$j(){
  return $('#' + this.get_id());
}

It's really nice if you're doing lots of ASP.NET AJAX, since jQuery is supported by MS now having a nice bridge means it's really easy to do jQuery operations:

$get('#myControl').j().hide();

So the above example isn't great, but if you're writing ASP.NET AJAX server controls, makes it easy to have jQuery inside your client-side control implementation.

link|flag
Does the ajax clientside library provide a way of finding a control by the original Id you assigned (in the code behind) – Chris S Jan 31 at 9:26
this.get_id() will return you the ID of the control in the client scope. The server-specified ID is irrelivant as the client ID is generated depending on the parent cotrol hierachy – Slace Jan 31 at 21:43
vote up 32 vote down

jQuery's data() method is useful and not well known. It allows you to bind data to DOM elements without modifying the DOM.

link|flag
1  
data() is indeed of great help. – Pim Jager Dec 23 '08 at 19:46
+1 this seems really useful. – Neil Aitken Mar 30 at 8:40
I have noticed that it doesn't work with elements without set ID. – Thinker May 28 at 18:30
2  
@Thinker: Yes, it does. – Alex Barrett Oct 5 at 11:23
vote up 14 vote down

instead of using a different alias for the jQuery object (when using noConflict), I always write my jQuery code by wrapping it all in a closure. This can be done in the document.ready function:

var $ = someOtherFunction(); // from a different library

jQuery(function($) {
    if ($ instanceOf jQuery) {
        alert("$ is the jQuery object!");
    }
});

alternatively you can do it like this:

(function($) {
    $('...').etc()    // whatever jQuery code you want
})(jQuery);

I find this to be the most portable. I've been working on a site which uses both Prototype AND jQuery simultaneously and these techniques have avoided all conflicts.

link|flag
The second example is nice'r for the eyes :) – roosteronacid Dec 25 '08 at 19:07
6  
There is a difference though, the first example will wait for the document.ready() event to fire, while the second won't. – SamBeran Feb 11 at 2:40
vote up 76 vote down

Creating an HTML Element and keeping a reference:

var newDiv = $('<div></div>');
newDiv.attr("id","myNewDiv").appendTo("body");
//Now whenever I want to append the new div I created, 
//I can just reference it from the 'newDiv' variable

Checking if an element exists:

if ($("#someDiv").length) {
    //it exists...
}

Writing your own selectors:

$.extend($.expr[':'], {
    over100pixels: function(a) {
        return $(a).height() > 100;
    }
});

$('.box:over100pixels').click(function() {
    alert('The element you clicked is over 100 pixels high');
});
link|flag
19  
Writing your own selectors is pretty slick – HBoss Dec 23 '08 at 17:18
6  
Also, if it's any help, you can actually do $("<div/>") and achieve the same thing as $("<div></div>") – HBoss Dec 23 '08 at 19:27
2  
I love the new selector part, didn't know about that. – Pim Jager Dec 23 '08 at 19:45
2  
Since I can't edit community wikis yet: Combine assignment and existence check with if ((var someDiv = $("#someDiv")).length) { /* do stuff with someDiv... */ } – Ben Blank Dec 23 '08 at 21:21
Adding selectors: amazing! Wish I learned that a long time ago! – TM Dec 23 '08 at 23:32
show 1 more comment
vote up 22 vote down

Nesting Filters

You can nest filters (as nickf showed here).

.filter(":not(:has(.selected))")
link|flag
8  
ooh a shoutout, cheers! – nickf Dec 29 '08 at 5:15
vote up 4 vote down

Save and Reuse Searches

Set a variable for a group of elements:

var allItems = $("div.item");
var keepList = $("div#container1 div.item");

Now you can keep working with those jQuery objects. For example, whittle down the "keep list" based on checkboxes whose names correspond to <div> class names:

$(formToLookAt + " input:checked").each(function() {  
   keepList = keepList.filter("." + $(this).attr("name")); 
});

Now hide the items that are NOT included in your filtered list:

allItems.not(keepList).hide();
link|flag
vote up 17 vote down

Check the Index

jQuery has .index but it is a pain to use, as you need the list of elements, and pass in the element you want the index of:

var index = e.g $('#ul>li').index( liDomObject );

The following is much easier:

If you want to know the index of an element within a set (e.g. list items) within a unordered list:

$("ul > li").click(function () {
    var index = $(this).prevAll().length;
});
link|flag
Hey, that's clever! – Mike Robinson Jun 25 at 13:41
What's wrong with the core index() method? It's been in core since 1.2 at least. docs.jquery.com/Core/index – ken Jul 23 at 19:43
1  
see above @ken ! – redsquare Jul 23 at 20:36
Ok, yes I was playing devil's advocate somewhat, because as I was reviewing jQuery's index() I realized it was kind of a pain in the butt. Thanks for the clarification! – ken Jul 24 at 15:01
This is cool, but important to know that it doesn't work quite right if you had previous siblings that weren't part of the selection. – TM Oct 14 at 17:19
vote up 4 vote down

On the core jQuery function, specify the context parameter when. Specifying the context parameter allows jQuery to start from a deeper branch in the DOM, rather than from the DOM root. Given a large enough DOM, specifying the context parameter should translate to performance gains.

Reference: http://docs.jquery.com/Core/jQuery#expressioncontext

link|flag
vote up 19 vote down

Ooooh, let's not forget jQuery metadata! data() is great, but it has to be populated via jQuery calls.

Instead of breaking W3C compliance with custom element attributes such as:

<input 
  name="email" 
  validation="required" 
  validate="email" 
  minLength="7" 
  maxLength="30"/>

Use metadata instead:

<input 
  name="email" 
  class="validation {validate: email, minLength: 2, maxLength: 50}" />

<script>
    jQuery('*[class=validation]').each(function () {
        var metadata = $(this).metadata();
        // etc.
    });
</script>
link|flag
vote up 3 vote down

Syntactic shorthand-sugar-thing--Cache an object collection and execute commands on one line:

Instead of:

var jQueryCollection = $("");

jQueryCollection.command().command();

I do:

var jQueryCollection = $("").command().command();

A somewhat "real" use case could be something along these lines:

var cache = $("#container div.usehovereffect").mouseover(function ()
{
    cache.removeClass("hover");

    $(this).addClass("hover");
});
link|flag
it better to put the $(this) reference in a local variable, because you wil take a minor perfomance hit here, because it will take a little longer... – Sander Versluys Jul 9 at 11:51
In this case (no pun intended) I am only using "this" one time. No need for caching. – roosteronacid Jul 15 at 7:26
vote up 9 vote down

Replace anonymous functions with named functions. This really supercedes the jQuery context, but it comes into play more it seems like when using jQuery, due to its reliance on callback functions. The problems I have with inline anonymous functions, are that they are harder to debug (much easier to look at a callstack with distinctly-named functions, instead 6 levels of "anonymous"), and also the fact that multiple anonymous functions within the same jQuery-chain can become unwieldy to read and/or maintain. Additionally, anonymous functions are typically not re-used; on the other hand, declaring named functions encourages me to write code that is more likely to be re-used.

An illustration; instead of:

$('div').toggle(
    function(){
        // do something
    },
    function(){
        // do something else
    }
);

I prefer:

function onState(){
    // do something
}

function offState(){
    // do something else
}

$('div').toggle( offState, onState );
link|flag
Unfortunately, because jQuery passes the event target as this, you can't get "proper" OO without using enclosures. I usually go for a compromise: $('div').click( function(e) { return self.onClick(e) } ); – Ben Blank May 28 at 18:38
1  
I'm sorry Ben, but I fail to see how your comment has any relevance to my post. Can you elaborate? You can still use 'self' (or any other variable) using my suggestion; it won't change any of that at all. – ken Jun 1 at 16:44
Yeh, Ben, what exactly do you mean!? – J-P Oct 19 at 10:17
I must mention: always fur variable and functions in namespace not in root !! – jmav Oct 27 at 23:17
vote up 15 vote down

Live Event Handlers

Set an event handler for any element that matches a selector, even if it gets added to the DOM after the initial page load:

$('button.someClass').live('click', someFunction);

This allows you to load content via ajax, or add them via javascript and have the event handlers get set up properly for those elements automatically.

Likewise, to stop the live event handling:

$('button.someClass').die('click', someFunction);

These live event handlers have a few limitations compared to regular events, but they work great for the majority of cases.

For more info see the jQuery Documentation.

link|flag
Yeah, I love the new live stuff. Note that it only works starting with jQuery 1.3. – Nosredna May 28 at 18:34
+1..you have saved me alot of heart ache..I just happened to read your entry and while I was taking a break - trobleshooting why my event was not firing. Thanks – Luke101 Nov 18 at 1:28
vote up 4 vote down

Speaking of Tips and Tricks and as well some tutorials. I found these series of tutorials (“jQuery for Absolute Beginners” Video Series) by Jeffery Way are VERY HELPFUL.

It targets those developers who are new to jQuery. He shows how to create many cool stuff with jQuery, like animation, Creating and Removing Elements and more...

I learned a lot from it. He shows how it's easy to use jQuery. Now I love it and i can read and understand any jQuery script even if it's complex.

Here is one example I like "Resizing Text"

1- jQuery...

<script language="javascript" type="text/javascript">
    $(function() {
    	$('a').click(function() {
    		var originalSize = $('p').css('font-size'); // get the font size 
    		var number = parseFloat(originalSize, 10); // that methode will chop off any intger from the specifid varibale "originalSize"
    		var unitOfMassure = originalSize.slice(-2);// store the unit of massure, Pixle or Inch

    		$('p').css('font-size', number / 1.2 + unitOfMassure);
    		if(this.id == 'larger'){$('p').css('font-size', number * 1.2 + unitOfMassure);}// figure out which element is triggered
    	 });		
     });
</script>

2- CSS Styling...

<style type="text/css" >
body{ margin-left:300px;text-align:center; width:700px; background-color:#666666;}
.box {width:500px; text-align:justify; padding:5px; font-family:verdana; font-size:11px; color:#0033FF; background-color:#FFFFCC;}
</style>

2- HTML...

<div class="box">
    <a href="#" id="larger">Larger</a> | 
    <a href="#" id="Smaller">Smaller</a>
    <p>
    In today’s video tutorial, I’ll show you how to resize text every time an associated anchor tag is clicked. We’ll be examining the “slice”, “parseFloat”, and “CSS” Javascript/jQuery methods. 
    </p>
</div>

Highly recommend these tutorials...

http://blog.themeforest.net/screencasts/jquery-for-absolute-beginners-video-series/

link|flag
vote up 4 vote down

Remove elements from a collection and preserve chainability

Consider the following:

<ul>
    <li>One</li>
    <li>Two</li>
    <li>Three</li>
    <li>Four</li>
    <li>Five</li>
</ul>


$("li").filter(function()
{
    var text = $(this).text();

    // return true: keep current element in the collection
    if (text === "One" || text === "Two") return true;

    // return false: remove current element from the collection
    return false;
}).each(function ()
{
    var text = $(this).text();

    // this will alert: "One" and "Two"       
    alert(text);
});

The filter() function removes elements from the jQuery object. In this case: All li-elements not containing the text "One" or "Two" will be removed.

link|flag
Isn't it simpler just to use "each" and move the margin change inside the switch? – DisgruntledGoat Sep 1 at 22:38
Updated my answer. Please let me know if I'm making myself clear(er) – roosteronacid Sep 2 at 8:20
Nice jquery trick – Luke101 Nov 18 at 1:51
vote up 5 vote down

Optimize performance of complex selectors

Query a subset of the DOM when using complex selectors drastically improves performance:

var subset = $("");

$("input[value^='']", subset);
link|flag
vote up 1 vote down

(This is a shamless plug)

Instead of writing repetitive form handling code, you can try out this plugin I wrote that adds to the fluent API of jQuery by adding form related methods:

// elementExists is also added
if ($("#someid").elementExists())
  alert("found it");

// Select box related
$("#mydropdown").isDropDownList();

// Can be any of the items from a list of radio boxes - it will use the name
$("#randomradioboxitem").isRadioBox("myvalue");
$("#radioboxitem").isSelected("myvalue");

// The value of the item selected. For multiple selects it's the first value
$("#radioboxitem").selectedValue();

// Various, others include password, hidden. Buttons also
$("#mytextbox").isTextBox();
$("#mycheck").isCheckBox();
$("#multi-select").isSelected("one", "two", "three");

// Returns the 'type' property or 'select-one' 'select-multiple'
var fieldType = $("#someid").formElementType();
link|flag
vote up -1 vote down

Nice compilation mates. I have also linked to yours from my blog post below where I am trying to collect the most useful and common jQuery code snippets for JavaScript over the web. Here is the title and the link to the jQuery link compilation endeavor:

Ultimate collection of top jQuery tutorials, tips-tricks and techniques to improve performance

http://technosiastic.wordpress.com/2009/09/24/collection-of-top-jquery-tutorials-tips-tricks-techniques-to-improve-performance/

link|flag
vote up 0 vote down

This one goes out to Kobi.


Consider the following snippet of code:

// hide all elements which contains the text "abc"
$("").each(function ()
{
    var that = $(this);

    if (that.text() == "abc") that.hide();
});

Here's a shorthand.. Which is about twice as fast:

$("p.value:contains('abc')").hide();
link|flag
vote up 1 vote down

An easy way to issue confirmation dialogs:

$("#submitButton").click(function(e) {
    confirm("Are you sure?) or e.preventDefault();})
link|flag
Not really a trick in my mind. I guess some would find it a tip. Anyways.. +1 :) – roosteronacid Oct 15 at 20:59
vote up 1 vote down

It seems that most of the interesting and important tips have been already mentioned, so this one is just a little addition.

The little tip is the jQuery.each(object, callback) function. Everybody is probably using the jQuery.each(callback) function to iterate over the jQuery object itself because it is natural. The jQuery.each(object, callback) utility function iterates over objects and arrays. For a long time, I somehow did not see what it could be for apart from a different syntax (I don’t mind writing all fashioned loops), and I’m a bit ashamed that I realized its main strength only recently.

The thing is that since the body of the loop in jQuery.each(object, callback) is a function, you get a new scope every time in the loop which is especially convenient when you create closures in the loop.

In other words, a typical common mistake is to do something like:

var functions = [];
var someArray = [1, 2, 3];
for (var i = 0; i < someArray.length; i++) {
    functions.push(function() { alert(someArray[i]) });
}

Now, when you invoke the functions in the functions array, you will get three times alert with the content undefined which is most likely not what you wanted. The problem is that there is just one variable i, and all three closures refer to it. When the loop finishes, the final value of i is 3, and someArrary[3] is undefined. You could work around it by calling another function which would create the closure for you. Or you use the jQuery utility which it will basically do it for you:

var functions = [];
var someArray = [1, 2, 3];
$.each(someArray, function(item) {
    functions.push(function() { alert(item) });
});

Now, when you invoke the functions you get three alerts with the content 1, 2 and 3 as expected.

In general, it is nothing you could not do yourself, but it’s nice to have.

link|flag
vote up 2 vote down

Update: I found something new; its the the JQuery Hotbox.

JQuery Hotbox

Google hosts several JavaScript libraries on Google Code. Loading it from there saves bandwidth and it loads quick cos it has already been cached.

<script src="http://www.google.com/jsapi"></script>  
<script type="text/javascript">  

    // Load jQuery  
    google.load("jquery", "1.2.6");  

    google.setOnLoadCallback(function() {  
        // Your code goes here.  
    });  

</script>

Or

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js" type="text/javascript"></script>

You can also use this to tell when an image is fully loaded.

$('#myImage').attr('src', 'image.jpg').load(function() {  
    alert('Image Loaded');  
});

The "console.info" of firebug, which you can use to dump messages and variables to the screen without having to use alert boxes. "console.time" allows you to easily set up a timer to wrap a bunch of code and see how long it takes.

console.time('create list');

for (i = 0; i < 1000; i++) {
    var myList = $('.myList');
    myList.append('This is list item ' + i);
}

console.timeEnd('create list');
link|flag
ppl in Iran can't see web pages loaded with google api. in fact google has restrict Iranians to access google code. so -1 – cubny Nov 28 at 15:33
@cubny: sorry about that. – Colour Blend Nov 28 at 15:58

Your Answer

Get an OpenID
or

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