Chaining

A varying amount of statements can be executed by chaining them on the same element. Each statement will be executed one after the other.

The value returned from each chained action is a new jQuery object. Chaining can be done by appending one action to the previous action; for example:

$("#p1").css("color", "blue").slideDown(100).slideUp(35);

Here, the actions slideUp() and slideDown() are performed one after the other.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.14.142.194