Click here to Skip to main content
Click here to Skip to main content

Common Pitfalls of jQuery

By , 19 Apr 2012
 
Prize winner in Competition "Best Web Dev article of April 2012"

Introduction

Nowadays, jQuery is the de facto JavaScript library. CodeProject uses jQuery, Microsoft uses jQuery, Google uses jQuery, and if you've ever made an interactive client-side web application, the chances are that you used jQuery to do it.

This means that the jQuery community is huge, active and vibrant--and that's a great thing. But it also means that people often start creating things with jQuery without first becoming familiar with Javascript and the DOM. It's wonderful, of course, that jQuery is so accessible that even newbies can use it. That said, people will use the most convoluted things with jQuery that could be done simply with just the DOM library, by using a slightly more obscure jQuery feature, or by just being more familiar with how Javascript itself works.

The goal of this article is to exhibit the most common pitfalls people encounter with jQuery. This article assumes that you know what jQuery is and have some basic familiarity with using it.

Excessive jQuery Calls

It's unfortunately common to see code like this

$("#example").text("Hello, world!");
$("#example").css("color", "red");
$("#example").addClass("fun");

This code is unnecessarily expensive, because it is making repeated calls to jQuery to look for elements that match the "#example" selector.

There are two alternative ways to do this. First, you can cache the query.

var $example = $("#example");
$example.text("Hello, world!");
$example.css("color", "red");
$example.addClass("fun");

When assigning a jQuery object to a variable, the convention is to put a dollar sign ($) before the name to demarcate it as a jQuery object.

Second, you can use method chaining. jQuery methods will return new jQuery objects that you can call more jQuery methods on.

$("#example").text("Hello, world!").css("color", "red").addClass("fun");

Mistakes with selectors

Missing parts of selectors

There is one single silly mistake with jQuery selectors that I've made so many times and that has wasted much more debugging time than I would like to admit. Do you see the problem with the following sample?

$("example").text("Hello, world!");

It's easy to miss. In case you didn't notice, there is no hash (#) or dot (.) in the selector to specify that it is searching for an element with a particular id or a set of elements with a particular class. The given selector will look for elements with the tag name example -- which won't exist in any normal circumstances.

Unscoped selectors

Let's suppose you had some markup like this, in the midst of lots of other markup

<!-- lots of HTML here -->
<div id="container">
  <div class="box">
  </div>
  <div class="lid">
  </div>
  <div class="box">
  </div>
  <div class="lid">
</div>
<!-- lots of HTML here -->

and you decided to select all the divs with the class box. So you just use the class selector.

$(".box")

This will work, but it will search the entire page for elements with the box class. This can be a very expensive operation. If you know that all the elements with the box class are inside of the container div, you can speed things up by limiting your search boundaries. There are a few different ways to do this in jQuery.

$("#container .box")
$("#container").find(".box")
$(".box", $("#container"))

Repetitive Selectors

It's fairly common to see the same effect being performed on multiple selections of elements.

$("#main").css("color", "red");
$("#content").css("color", "red");
$(".important").css("color", "red");

It's better to use the comma (,) selection operator to match multiple selections

$("#main, #content, .important").css("color", "red");

Unused Shortcuts

These lines of code are unfortunately common

$("#el").css("display", "none");
$("#el").css("display", "");

if($("#el").is(":visible")) $("#el").css("display", "none");
else $("#el").css("display", "");

$("#el").html("");
$("#el").prop("class", $("#el").prop("class") + " " + newClass);

when there are faster and more readable shortcuts

$("#el").hide();
$("#el").show();
$("#el").toggle();
$("#el").empty();
$("#el").addClass(newClass);

Unfamiliarity with the DOM

It's a good idea to get acquainted with the DOM, because there are some things that using jQuery for is excessive. For example,

 $('img').click(function() { 
      alert($(this).attr('src'));
}); 

is excessive when you can just use

$('img').click(function() { 
    alert(this.src);
}); 

Similarly, you can use this.id instead of $(this).attr("id"). Be careful, though: some properties are not standard will not work across browsers. For example, the non-standard .class property will work on some browsers but not others, but the standard .className should work universally.

The A in AJAX stands for Asynchronous

You should take advantage of asynchronous requests. Too often people will be frustrated with functions not executing in the order they expected and then disable the asynch property

$.ajax({
  async: false
});

Disabling async this makes things slower and locks up the browser during the request--so it's usually a bad idea. You should use callbacks instead to manage how you want things to be executed. Explaining how callbacks work is outside the scope of thise article, but there are good reources explaining it.

Understanding Dynamic Changes

Suppose that you have this code,

$("button").click(doSomething);

and then you dynamically add some buttons to the page. You will notice that the added buttons will not fire the doSomething function. Why is this? The click function only bind the event to the button elements that already exist. If you want it to also bind the event for every button that will be added to the page, you need to use the delegate jQuery method

$(document).delegate("button", "click", doSomething);

This will bind the doSomething function to every button that will ever exist inside of the document. If you only wanted to bind it with with buttons inside a certain selector, then you would replace document with whatever selector you wanted.

That's all, folks!

These are the most common jQuery pitfalls that I have seen and been bit by. If there is an obvious one that I am missing, let me know about it and I might update this article.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Peter_Olson
United States United States
Member
I'm an 18 year old web developer and I have been programming for about 3 years.
 
I am active on Stack Overflow.
 
You can contact me via email at peter.e.c.olson+codeproject@gmail.com

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5membercsharpbd8 May '13 - 0:28 
Nice!!!
GeneralMy vote of 5memberRohan M Thomas16 Jan '13 - 22:45 
Well written with some great original content
QuestionExcellentmemberNitin Sawant6 Dec '12 - 17:09 
Excellent Thumbs Up | :thumbsup:
============================================
The grass is always greener on the other side of the fence

QuestionNice readmemberHaBiX3 Oct '12 - 22:29 
but in your "Unused Shortcuts" you're using "Extensive calls to jQuery" bad practice Poke tongue | ;-P
AnswerRe: Nice readmemberPeter_Olson7 Oct '12 - 14:26 
I'm not sure what you're referring to; is there a shortcut that I am using that has too much jQuery in it?
GeneralRe: Nice readmemberjlopez7887 Dec '12 - 2:55 
Think HaBix is busting your chops for using
$("#el").hide();
$("#el").show();
$("#el").toggle();
$("#el").empty();
$("#el").addClass(newClass);
 
when you could've easily used
$("#el").hide().show().toggle().empty().addClass(newClass);

GeneralRe: Nice readmemberPeter_Olson7 Dec '12 - 4:20 
Oh, I meant those to be considered as separate examples, not a program to be executed in sequence.
GeneralMy vote of 5memberRazibul Islam30 Sep '12 - 22:40 
nice article
GeneralJavascript Variable Arrays [modified]memberGary Noter31 May '12 - 12:24 
Note: the CodeProject article editor stinkin' SUCKS!! I've tried 5 different browsers on 2 different OS's to try and get the code segments formatted, but no go. And, don't go commenting it's "user error". I've recorded everything via Camtasia as proof. I did have 3 other sections, but I'm so pissed at the article editor, forget it CodeProject, your "editor" sucks!
 
Variable Arrays
 
The one thing that I detest in jQuery is having to retype a DOM object's [static] ID. That's where a variable array comes in handy use. [Now, in .NET v3.5 and earlier world this approach may not work as effectively if you have user controls or master pages which, dismayingly, most traditional .NET web form page have and, dismayingly, create coptic and ever-changing variable names.] Here's an example JS array variable; note the double "$$" as the variable name:
 
var $$ = { 
  zfieldError: "#fieldError"  
  , pnlBreakfastMenu: "#pnlBreakfastMenu"
  , ddlRoomNumber: "#ddlRoomNumber"
  , btnOrderForNow: "#btnOrderForNow"
  , btnOrderForLater: "#btnOrderForLater"
  , chbxMealTime: "#chbxMealTime"
  , chbxMealChoice: "#chbxMealChoice"
  , ddlSlverwareCategory: "#ddlSilverwareCategory"
  , ddlSauces: "#ddlSauces"
  , btnCancel: "#btnCancel"  
}  
 
This then makes it possible to call your object using jQuery using the now defined $$ variable, as such:
 
$($$.ddlSilverwareCategory).show();
Mad | :mad: @ CodeProjects "article editor"


modified 1 Jun '12 - 12:43.

SuggestionAnother possible pitfall with Ajaxmemberpmaree30 May '12 - 21:30 
Another possible pitfall is perhaps related to binding your JQuery calls (e.g. dynamic styling) to the "$(document).ready" method and your aspx page performs Ajax postbacks. I.e. when the Ajax postbacks occur, the JQuery dynamic styling is lost.
 
To resolve this you need to re-call your JQuery styling methods from the aspx page's page_load method (when it is an Ajax postback, i.e. partial postback), e.g.:
 
function pageLoad(sender, args) {
if (args.get_isPartialLoad()) {
initJsBindings(); //Must rebind Jquery controls on Ajax postbacks
}
}

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 19 Apr 2012
Article Copyright 2012 by Peter_Olson
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid