SlideShare a Scribd company logo
JQUERY BEST PRACTICE
AND
SELECTORS
Author: Chandra Shekher P
© chandrashekher
TOPICS
1. Loading jQuery
2. Variables
3. Selectors
4. Dom Manipulation
5. Events
6. Ajax
7. Animations
8. Plugins
9. Chaining
10. Miscellaneous
LOADING JQUERY
 Always try to use a CDN to include jQuery on your page,
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">
</script> <script>window.jQuery || document.write('<script src="js/jquery-2.1.1.min.js"
type="text/javascript"></script>')</script>
 If possible, keep all your JavaScript and jQuery includes at the bottom
of your page.
 For advanced browser feature detection, use Modernizr.js .
 If you are using other libraries like Prototype, MooTools, Zepto etc. that
uses $ sign as well,
 try not to use $ for calling jQuery functions and instead
use jQuery simply. You can return control of $ back to the other library
with a call to $.noConflict().
JQUERY VARIABLES
 All variables that are used to store/cache jQuery
objects should have a name prefixed with a $.
 Always cache your jQuery selector returned objects
in variables for reuse.
var $myDiv = $("#myDiv");
$myDiv.click(function(){...});
 Use camel case for naming variables.
SELECTORS
 Use ID selector whenever possible. It is faster because they are handled
using document.getElementById().
 When using class selectors, don't use the element type in your selector. for
Performance Improvements.
var $products = $("div.products"); // SLOW
var $products = $(".products"); // FAST
 Use find for Id->Child nested selectors. The .find() approach is faster because the first
selection is handled without going through the Sizzle selector engine.
// BAD, a nested query for Sizzle selector engine
var $productIds = $("#products div.id");
// GOOD, #products is already selected by document.getElementById() so only div.id
needs
to go through Sizzle selector engine
var $productIds = $("#products").find("div.id");
SELECTORS
 Be specific on the right-hand side of your selector, and less
specific on the left
// Unoptimized $("div.data .gonzalez"); //
Optimized $(".data td.gonzalez");
 Avoid Excessive Specificity
$(".data table.attendees td.gonzalez"); // Better: Drop the middle if
possible.
$(".data td.gonzalez");
SELECTORS
 Give your Selectors a Context.
// SLOWER because it has to traverse the whole DOM for
.class
$('.class');
// FASTER because now it only looks under class-container.
$('.class', '#class-container');
 Avoid Universal Selectors
$('div.container > *'); // BAD
$('div.container').children(); // BETTER
SELECTORS
 Avoid Implied Universal Selectors. When you leave off the
selector, the universal selector (*) is still implied.
$('div.someclass :radio'); // BAD
$('div.someclass input:radio'); // GOOD
Don’t Descend Multiple IDs or nest when selecting an ID. ID-only
selections are handled using document.getElementById() so
don't mix them with other selectors.
$('#outer #inner'); // BAD
$('div#inner'); // BAD
$('.outer-container #inner'); // BAD
$('#inner'); // GOOD, only calls
document.getElementById()
DOM MANIPULATION
 Always detach any existing element before manipulation and
attach it back after manipulating it.
var $myList = $("#list-container > ul").detach();
//...a lot of complicated things on $myList
$myList.appendTo("#list-container");
 Don’t Act on Absent Elements.
// BAD: This runs three functions before it realizes there's nothing in the
selection
$("#nosuchthing").slideUp();
// GOOD
var $mySelection = $("#nosuchthing");
if ($mySelection.length) {
$mySelection.slideUp();
}
DOM MANIPULATION
 Use string concatenation or array.join() over .append()
// BAD
var $myList = $("#list");
for(var i = 0; i < 10000; i++){
$myList.append("<li>"+i+"</li>");
}
// GOOD var $myList = $("#list");
var list = "";
for(var i = 0; i < 10000; i++){
list += "<li>"+i+"</li>";
}
$myList.html(list);
// EVEN FASTER
var array = [];
for(var i = 0; i < 10000; i++){
array[i] = "<li>"+i+"</li>";
}
$myList.html(array.join(''));
EVENTS
 Use only one Document Ready handler per page. It makes it easier
to debug and keep track of the behavior flow.
 DO NOT use anonymous functions to attach events. Anonymous
functions are difficult to debug, maintain, test, or reuse.
$("#myLink").on("click", function(){...}); // BAD
// GOOD
function myLinkClickHandler(){...}
$("#myLink").on("click", myLinkClickHandler);
 Document ready event handler should not be an anonymous
function. Once again, anonymous functions are difficult to debug,
maintain, test, or reuse.
$(function(){ ... }); // BAD: You can never reuse or write a test for this function.
// GOOD
$(initPage); // or $(document).ready(initPage);
function initPage(){
// Page load event where you can initialize values and call other
initializers.
EVENTS
 Document ready event handlers should be included from
external files and inline JavaScript can be used to call the
ready handle after any initial setup.
<script src="my-document-ready.js"></script>
<script>
// Any global variable set-up that might be needed.
$(document).ready(initPage); // or
$(initPage);
</script>
 DO NOT use behavioral markup in HTML (JavaScript inlining),
these are debugging nightmares. Always bind events with
jQuery to be consistent so it's easier to attach and remove
events dynamically.
<a id="myLink" href="#" onclick="myEventHandler();"> my link
</a> <!-- BAD -->
$("#myLink").on("click", myEventHandler); // GOOD
EVENTS
 When possible, use custom namespace for events. It's easier to
unbind the exact event that you attached without affecting other
events bound to the DOM element.
$("#myLink").on("click.mySpecialClick", myEventHandler); // GOOD
// Later on, it's easier to unbind just your click event
$("#myLink").unbind("click.mySpecialClick");
 Use event delegation when you have to attach same event to
multiple elements. Event delegation allows us to attach a single
event listener, to a parent element, that will fire for all
descendants matching a selector, whether those descendants
exist now or are added in the future.
$("#list a").on("click", myClickHandler); // BAD, you are attaching an
event to all
the links under the list.
$("#list").on("click", "a", myClickHandler); // GOOD, only one event
handler is
attached to the parent.
AJAX
 Avoid using .getJson() or .get(), simply use the $.ajax() as
that's what gets called internally.
 DO NOT use http requests on https sites. Prefer schemaless
URLs (leave the protocol http/https out of your URL)
 DO NOT put request parameters in the URL, send them using
data object setting.
// Less readable...
$.ajax({
url: "something.php?param1=test1&param2=test2", ....
});
// More readable...
$.ajax({
url: "something.php",
data: { param1: test1, param2: test2 }
});
AJAX
 Try to specify the dataType setting so it's easier to know what
kind of data you are working with.
 Use Delegated event handlers for attaching events to content
loaded using Ajax. Delegated events have the advantage that
they can process events from descendant elements that are
added to the document at a later time
$("#parent-container").on("click", "a",
delegatedClickHandlerForAjax);
 Use Promise interface
$.ajax({ ... }).then(successHandler, failureHandler);
// OR
var jqxhr = $.ajax({ ... });
jqxhr.done(successHandler);
jqxhr.fail(failureHandler);
AJAX
 Sample Ajax Template:
var jqxhr = $.ajax({
url: url,
type: "GET", // default is GET but you can use other verbs based on your needs.
cache: true, // default is true, but false for dataType 'script' and 'jsonp', so set it on need
basis.
data: { }, // add your request parameters in the data object.
dataType: "json", // specify the dataType for future reference
jsonp: "callback", // only specify this to match the name of callback parameter your API is
expecting for JSONP requests. //
statusCode: { // if you want to handle specific error codes, use the status code mapping
settings.
404: handler404,
500: handler500
} });
jqxhr.done(successHandler);
EFFECTS AND ANIMATIONS
 Adopt a restrained and consistent approach to implementing
animation functionality.
 DO NOT over-do the animation effects until driven by the UX
requirements.
1 Try to use simple show/hide, toggle and
slideUp/slideDown
functionality to toggle elements.
2 Try to use predefined animations durations of "slow",
"fast" or 400
(for medium).
CHAINING
 Use chaining as an alternative to variable caching and multiple
selector calls.
$("#myDiv").addClass("error").show();
 Whenever the chain grows over 3 links or gets complicated because
of event assignment, use appropriate line breaks and indentation to
make the code readable.
$("#myLink")
.addClass("bold")
.on("click", myClickHandler)
.on("mouseover", myMouseOverHandler)
.show();
 For long chains it is acceptable to cache intermediate objects in a
variable.
PLUGINS
 Always choose a plugin with good support, documentation,
testing and community support.
 Check the compatibility of plugin with the version of jQuery
that you are using.
 Any common reusable component should be implemented as
a jQuery plugin
MISCELLANEOUS
 Use Object literals for parameters.
$myLink.attr("href", "#").attr("title", "my link").attr("rel", "external"); // BAD, 3 calls to attr()
// GOOD, only 1 call to attr()
$myLink.attr({
href: "#",
title: "my link",
rel: "external"
});
 Do not mix CSS with jQuery.
$("#mydiv").css({'color':red, 'font-weight':'bold'}); // BAD
$("#mydiv").addClass("error"); // GOOD
 DO NOT use Deprecated Methods. It is always important to keep an eye on deprecated
methods for each new version and try avoid using them.Click here for a list of deprecated
methods.
 Combine jQuery with native JavaScript when needed. See the performance difference for
the example given below
$("#myId"); // is still little slower than... document.getElementById("myId");

More Related Content

What's hot (20)

PPTX
jQuery
Jay Poojara
 
KEY
Sprout core and performance
Yehuda Katz
 
PDF
How Kris Writes Symfony Apps
Kris Wallsmith
 
PPTX
jQuery from the very beginning
Anis Ahmad
 
PDF
Drupal, meet Assetic
Kris Wallsmith
 
PPT
jQuery
Mostafa Bayomi
 
PDF
Learning jQuery in 30 minutes
Simon Willison
 
PPTX
jQuery Fundamentals
Gil Fink
 
PDF
Write Less Do More
Remy Sharp
 
KEY
Week 4 - jQuery + Ajax
baygross
 
PDF
22 j query1
Fajar Baskoro
 
PPT
A Short Introduction To jQuery
Sudar Muthu
 
PPTX
Getting the Most Out of jQuery Widgets
velveeta_512
 
ODP
Introduction to jQuery
manugoel2003
 
PDF
Jquery plugin development
Md. Ziaul Haq
 
PDF
Prototype & jQuery
Remy Sharp
 
PDF
jQuery for beginners
Siva Arunachalam
 
PDF
JQuery plugin development fundamentals
Bastian Feder
 
PPTX
Introduction to jQuery
Gunjan Kumar
 
jQuery
Jay Poojara
 
Sprout core and performance
Yehuda Katz
 
How Kris Writes Symfony Apps
Kris Wallsmith
 
jQuery from the very beginning
Anis Ahmad
 
Drupal, meet Assetic
Kris Wallsmith
 
Learning jQuery in 30 minutes
Simon Willison
 
jQuery Fundamentals
Gil Fink
 
Write Less Do More
Remy Sharp
 
Week 4 - jQuery + Ajax
baygross
 
22 j query1
Fajar Baskoro
 
A Short Introduction To jQuery
Sudar Muthu
 
Getting the Most Out of jQuery Widgets
velveeta_512
 
Introduction to jQuery
manugoel2003
 
Jquery plugin development
Md. Ziaul Haq
 
Prototype & jQuery
Remy Sharp
 
jQuery for beginners
Siva Arunachalam
 
JQuery plugin development fundamentals
Bastian Feder
 
Introduction to jQuery
Gunjan Kumar
 

Similar to jQuery Best Practice (20)

PPT
Digesting jQuery
Mindfire Solutions
 
PDF
Frontin like-a-backer
Frank de Jonge
 
KEY
[Coscup 2012] JavascriptMVC
Alive Kuo
 
PDF
DrupalCon jQuery
Nathan Smith
 
PDF
Writing JavaScript that doesn't suck
Ross Bruniges
 
PPT
J query b_dotnet_ug_meet_12_may_2012
ghnash
 
PDF
Introduction to jQuery
Nivedhitha Venugopal
 
PDF
Writing Maintainable JavaScript
Andrew Dupont
 
PDF
Learning jQuery made exciting in an interactive session by one of our team me...
Thinqloud
 
PDF
Building Large jQuery Applications
Rebecca Murphey
 
PDF
Reliable Javascript
Glenn Stovall
 
PDF
jQuery
Ivano Malavolta
 
PPTX
How to increase Performance of Web Application using JQuery
kolkatageeks
 
PPTX
Jquery Basics
Umeshwaran V
 
PDF
Symfony2 - from the trenches
Lukas Smith
 
ODP
Jquery- One slide completing all JQuery
Knoldus Inc.
 
PPT
The Theory Of The Dom
kaven yan
 
KEY
Jarv.us Showcase — SenchaCon 2011
Chris Alfano
 
ZIP
First Steps in Drupal Code Driven Development
Nuvole
 
PDF
Javascript Frameworks for Joomla
Luke Summerfield
 
Digesting jQuery
Mindfire Solutions
 
Frontin like-a-backer
Frank de Jonge
 
[Coscup 2012] JavascriptMVC
Alive Kuo
 
DrupalCon jQuery
Nathan Smith
 
Writing JavaScript that doesn't suck
Ross Bruniges
 
J query b_dotnet_ug_meet_12_may_2012
ghnash
 
Introduction to jQuery
Nivedhitha Venugopal
 
Writing Maintainable JavaScript
Andrew Dupont
 
Learning jQuery made exciting in an interactive session by one of our team me...
Thinqloud
 
Building Large jQuery Applications
Rebecca Murphey
 
Reliable Javascript
Glenn Stovall
 
How to increase Performance of Web Application using JQuery
kolkatageeks
 
Jquery Basics
Umeshwaran V
 
Symfony2 - from the trenches
Lukas Smith
 
Jquery- One slide completing all JQuery
Knoldus Inc.
 
The Theory Of The Dom
kaven yan
 
Jarv.us Showcase — SenchaCon 2011
Chris Alfano
 
First Steps in Drupal Code Driven Development
Nuvole
 
Javascript Frameworks for Joomla
Luke Summerfield
 
Ad

Recently uploaded (20)

PPTX
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
PPTX
DAY 1_QUARTER1 ENGLISH 5 WEEK- PRESENTATION.pptx
BanyMacalintal
 
PPTX
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
PDF
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
PDF
Android Programming - Basics of Mobile App, App tools and Android Basics
Kavitha P.V
 
PPTX
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
PDF
Horarios de distribución de agua en julio
pegazohn1978
 
PPTX
Difference between write and update in odoo 18
Celine George
 
PPTX
How to Configure Re-Ordering From Portal in Odoo 18 Website
Celine George
 
PDF
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
PDF
AI-Powered-Visual-Storytelling-for-Nonprofits.pdf
TechSoup
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PPTX
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
PPTX
Nitrogen rule, ring rule, mc lafferty.pptx
nbisen2001
 
PPTX
TRANSLATIONAL AND ROTATIONAL MOTION.pptx
KIPAIZAGABAWA1
 
PDF
Governor Josh Stein letter to NC delegation of U.S. House
Mebane Rash
 
PDF
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
PPTX
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
PPTX
How to Send Email From Odoo 18 Website - Odoo Slides
Celine George
 
PPTX
Introduction to Biochemistry & Cellular Foundations.pptx
marvinnbustamante1
 
How to Create Odoo JS Dialog_Popup in Odoo 18
Celine George
 
DAY 1_QUARTER1 ENGLISH 5 WEEK- PRESENTATION.pptx
BanyMacalintal
 
Cultivation practice of Litchi in Nepal.pptx
UmeshTimilsina1
 
Stokey: A Jewish Village by Rachel Kolsky
History of Stoke Newington
 
Android Programming - Basics of Mobile App, App tools and Android Basics
Kavitha P.V
 
PPT-Q1-WK-3-ENGLISH Revised Matatag Grade 3.pptx
reijhongidayawan02
 
Horarios de distribución de agua en julio
pegazohn1978
 
Difference between write and update in odoo 18
Celine George
 
How to Configure Re-Ordering From Portal in Odoo 18 Website
Celine George
 
Aprendendo Arquitetura Framework Salesforce - Dia 03
Mauricio Alexandre Silva
 
AI-Powered-Visual-Storytelling-for-Nonprofits.pdf
TechSoup
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
Universal immunization Programme (UIP).pptx
Vishal Chanalia
 
Nitrogen rule, ring rule, mc lafferty.pptx
nbisen2001
 
TRANSLATIONAL AND ROTATIONAL MOTION.pptx
KIPAIZAGABAWA1
 
Governor Josh Stein letter to NC delegation of U.S. House
Mebane Rash
 
Is Assignment Help Legal in Australia_.pdf
thomas19williams83
 
HUMAN RESOURCE MANAGEMENT: RECRUITMENT, SELECTION, PLACEMENT, DEPLOYMENT, TRA...
PRADEEP ABOTHU
 
How to Send Email From Odoo 18 Website - Odoo Slides
Celine George
 
Introduction to Biochemistry & Cellular Foundations.pptx
marvinnbustamante1
 
Ad

jQuery Best Practice

  • 1. JQUERY BEST PRACTICE AND SELECTORS Author: Chandra Shekher P © chandrashekher
  • 2. TOPICS 1. Loading jQuery 2. Variables 3. Selectors 4. Dom Manipulation 5. Events 6. Ajax 7. Animations 8. Plugins 9. Chaining 10. Miscellaneous
  • 3. LOADING JQUERY  Always try to use a CDN to include jQuery on your page, <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"> </script> <script>window.jQuery || document.write('<script src="js/jquery-2.1.1.min.js" type="text/javascript"></script>')</script>  If possible, keep all your JavaScript and jQuery includes at the bottom of your page.  For advanced browser feature detection, use Modernizr.js .  If you are using other libraries like Prototype, MooTools, Zepto etc. that uses $ sign as well,  try not to use $ for calling jQuery functions and instead use jQuery simply. You can return control of $ back to the other library with a call to $.noConflict().
  • 4. JQUERY VARIABLES  All variables that are used to store/cache jQuery objects should have a name prefixed with a $.  Always cache your jQuery selector returned objects in variables for reuse. var $myDiv = $("#myDiv"); $myDiv.click(function(){...});  Use camel case for naming variables.
  • 5. SELECTORS  Use ID selector whenever possible. It is faster because they are handled using document.getElementById().  When using class selectors, don't use the element type in your selector. for Performance Improvements. var $products = $("div.products"); // SLOW var $products = $(".products"); // FAST  Use find for Id->Child nested selectors. The .find() approach is faster because the first selection is handled without going through the Sizzle selector engine. // BAD, a nested query for Sizzle selector engine var $productIds = $("#products div.id"); // GOOD, #products is already selected by document.getElementById() so only div.id needs to go through Sizzle selector engine var $productIds = $("#products").find("div.id");
  • 6. SELECTORS  Be specific on the right-hand side of your selector, and less specific on the left // Unoptimized $("div.data .gonzalez"); // Optimized $(".data td.gonzalez");  Avoid Excessive Specificity $(".data table.attendees td.gonzalez"); // Better: Drop the middle if possible. $(".data td.gonzalez");
  • 7. SELECTORS  Give your Selectors a Context. // SLOWER because it has to traverse the whole DOM for .class $('.class'); // FASTER because now it only looks under class-container. $('.class', '#class-container');  Avoid Universal Selectors $('div.container > *'); // BAD $('div.container').children(); // BETTER
  • 8. SELECTORS  Avoid Implied Universal Selectors. When you leave off the selector, the universal selector (*) is still implied. $('div.someclass :radio'); // BAD $('div.someclass input:radio'); // GOOD Don’t Descend Multiple IDs or nest when selecting an ID. ID-only selections are handled using document.getElementById() so don't mix them with other selectors. $('#outer #inner'); // BAD $('div#inner'); // BAD $('.outer-container #inner'); // BAD $('#inner'); // GOOD, only calls document.getElementById()
  • 9. DOM MANIPULATION  Always detach any existing element before manipulation and attach it back after manipulating it. var $myList = $("#list-container > ul").detach(); //...a lot of complicated things on $myList $myList.appendTo("#list-container");  Don’t Act on Absent Elements. // BAD: This runs three functions before it realizes there's nothing in the selection $("#nosuchthing").slideUp(); // GOOD var $mySelection = $("#nosuchthing"); if ($mySelection.length) { $mySelection.slideUp(); }
  • 10. DOM MANIPULATION  Use string concatenation or array.join() over .append() // BAD var $myList = $("#list"); for(var i = 0; i < 10000; i++){ $myList.append("<li>"+i+"</li>"); } // GOOD var $myList = $("#list"); var list = ""; for(var i = 0; i < 10000; i++){ list += "<li>"+i+"</li>"; } $myList.html(list); // EVEN FASTER var array = []; for(var i = 0; i < 10000; i++){ array[i] = "<li>"+i+"</li>"; } $myList.html(array.join(''));
  • 11. EVENTS  Use only one Document Ready handler per page. It makes it easier to debug and keep track of the behavior flow.  DO NOT use anonymous functions to attach events. Anonymous functions are difficult to debug, maintain, test, or reuse. $("#myLink").on("click", function(){...}); // BAD // GOOD function myLinkClickHandler(){...} $("#myLink").on("click", myLinkClickHandler);  Document ready event handler should not be an anonymous function. Once again, anonymous functions are difficult to debug, maintain, test, or reuse. $(function(){ ... }); // BAD: You can never reuse or write a test for this function. // GOOD $(initPage); // or $(document).ready(initPage); function initPage(){ // Page load event where you can initialize values and call other initializers.
  • 12. EVENTS  Document ready event handlers should be included from external files and inline JavaScript can be used to call the ready handle after any initial setup. <script src="my-document-ready.js"></script> <script> // Any global variable set-up that might be needed. $(document).ready(initPage); // or $(initPage); </script>  DO NOT use behavioral markup in HTML (JavaScript inlining), these are debugging nightmares. Always bind events with jQuery to be consistent so it's easier to attach and remove events dynamically. <a id="myLink" href="#" onclick="myEventHandler();"> my link </a> <!-- BAD --> $("#myLink").on("click", myEventHandler); // GOOD
  • 13. EVENTS  When possible, use custom namespace for events. It's easier to unbind the exact event that you attached without affecting other events bound to the DOM element. $("#myLink").on("click.mySpecialClick", myEventHandler); // GOOD // Later on, it's easier to unbind just your click event $("#myLink").unbind("click.mySpecialClick");  Use event delegation when you have to attach same event to multiple elements. Event delegation allows us to attach a single event listener, to a parent element, that will fire for all descendants matching a selector, whether those descendants exist now or are added in the future. $("#list a").on("click", myClickHandler); // BAD, you are attaching an event to all the links under the list. $("#list").on("click", "a", myClickHandler); // GOOD, only one event handler is attached to the parent.
  • 14. AJAX  Avoid using .getJson() or .get(), simply use the $.ajax() as that's what gets called internally.  DO NOT use http requests on https sites. Prefer schemaless URLs (leave the protocol http/https out of your URL)  DO NOT put request parameters in the URL, send them using data object setting. // Less readable... $.ajax({ url: "something.php?param1=test1&param2=test2", .... }); // More readable... $.ajax({ url: "something.php", data: { param1: test1, param2: test2 } });
  • 15. AJAX  Try to specify the dataType setting so it's easier to know what kind of data you are working with.  Use Delegated event handlers for attaching events to content loaded using Ajax. Delegated events have the advantage that they can process events from descendant elements that are added to the document at a later time $("#parent-container").on("click", "a", delegatedClickHandlerForAjax);  Use Promise interface $.ajax({ ... }).then(successHandler, failureHandler); // OR var jqxhr = $.ajax({ ... }); jqxhr.done(successHandler); jqxhr.fail(failureHandler);
  • 16. AJAX  Sample Ajax Template: var jqxhr = $.ajax({ url: url, type: "GET", // default is GET but you can use other verbs based on your needs. cache: true, // default is true, but false for dataType 'script' and 'jsonp', so set it on need basis. data: { }, // add your request parameters in the data object. dataType: "json", // specify the dataType for future reference jsonp: "callback", // only specify this to match the name of callback parameter your API is expecting for JSONP requests. // statusCode: { // if you want to handle specific error codes, use the status code mapping settings. 404: handler404, 500: handler500 } }); jqxhr.done(successHandler);
  • 17. EFFECTS AND ANIMATIONS  Adopt a restrained and consistent approach to implementing animation functionality.  DO NOT over-do the animation effects until driven by the UX requirements. 1 Try to use simple show/hide, toggle and slideUp/slideDown functionality to toggle elements. 2 Try to use predefined animations durations of "slow", "fast" or 400 (for medium).
  • 18. CHAINING  Use chaining as an alternative to variable caching and multiple selector calls. $("#myDiv").addClass("error").show();  Whenever the chain grows over 3 links or gets complicated because of event assignment, use appropriate line breaks and indentation to make the code readable. $("#myLink") .addClass("bold") .on("click", myClickHandler) .on("mouseover", myMouseOverHandler) .show();  For long chains it is acceptable to cache intermediate objects in a variable.
  • 19. PLUGINS  Always choose a plugin with good support, documentation, testing and community support.  Check the compatibility of plugin with the version of jQuery that you are using.  Any common reusable component should be implemented as a jQuery plugin
  • 20. MISCELLANEOUS  Use Object literals for parameters. $myLink.attr("href", "#").attr("title", "my link").attr("rel", "external"); // BAD, 3 calls to attr() // GOOD, only 1 call to attr() $myLink.attr({ href: "#", title: "my link", rel: "external" });  Do not mix CSS with jQuery. $("#mydiv").css({'color':red, 'font-weight':'bold'}); // BAD $("#mydiv").addClass("error"); // GOOD  DO NOT use Deprecated Methods. It is always important to keep an eye on deprecated methods for each new version and try avoid using them.Click here for a list of deprecated methods.  Combine jQuery with native JavaScript when needed. See the performance difference for the example given below $("#myId"); // is still little slower than... document.getElementById("myId");