Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is chaining in jQuery?



What is chaining in jQuery?..

Answer / chaitanya

Chaining is one of the most powerful feature of jQuery. In jQuery, Chaining means to connect multiple functions, events on selectors. It makes your code short and easy to manage and it gives better performance. The chain starts from left to right. So left most will be called first and so on.

Hide Copy Code

​$(document).ready(function(){

$('#dvContent').addClass('dummy');

$('#dvContent').css('color', 'red');

$('#dvContent').fadeIn('slow');

});​

The above jQuery code sample can be re-written using chaining. See below.

Hide Copy Code

​$(document).ready(function(){

$('#dvContent').addClass('dummy')

.css('color', 'red')

.fadeIn('slow');

});​

Not only functions or methods, chaining also works with events in jQuery. Find out more here.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More jQuery Interview Questions

Tell me which program is useful for testing jquery?

0 Answers  


Difference between detach and remove? : jQuery Mobile

0 Answers  


Is it too early to discuss jquery ui 1.8?

0 Answers  


Explain some of the key concepts of good code organization patterns.

0 Answers  


How do I pull a native DOM element from a jQuery object?

0 Answers   MCN Solutions,


How to use jquery?

0 Answers  


Why use jQuery filter() Methods?

0 Answers  


How do you select an item using css class or id and get the value by use of jquery.

0 Answers  


Do we need to add the jquery file both at the master page and content page as well?

0 Answers  


How to create clone of any object using jQuery?

1 Answers  


How can related code be encapsulated? Give example.

0 Answers  


Explain the concepts of "$ function" in jquery with an example?

0 Answers  


Categories