Arun Singh
Posted Date
8/1/2012
|
Chaining is very powerful feature of jQuery that means specifying multiple function and/or selectors to an element. $(document).ready(function(){ $('#mydiv').css('color', 'blue'); $('#mydiv').addClass('myclass'); $('#mydiv').fadeIn('fast'); }
|
|