I love jQeury. I’m a jQuery Fan !
Look at this example from the jQuery home page:
$("p.surprise").addClass("ohmy").show("slow");
That will get all the p elements with the class surprise, add the class “ohmy”, and then change the display to “block” with a slow animation. Go run it on the jQuery homepage. Nice, eh? The dollar function is magical. You just give it a CSS selector, and it returns jQuery objects that you can do all kinds of cool things with. Also, almost all the functions in the framework return this same jQuery object, so they are chainable like you see above.
Lance Fisher has made an update to jQuery for Intellisense in Visual Studio 2008

[ Click here to read about it and download jQuery with the Intellisense updates. ]
Popularity: 5% [?]
January 5th, 2009
admin
Posted in
Tags: