Hi Luigi
jQuery says: write less, do more
for example if you want to load a page (Test.aspx) in a div (with id="page1") you can write:
$("#page1").load("Test.aspx");
it loads test.aspx in page1 div! even you can partially load it:
$("#page1").load("Test.aspx #div1");
the above statement loads div1's value into page1
Google has wrote it's auto-complete with jQuery!
jQuery is one of javascript libraries that I think it's the most powerful
js Library. others are: YUI (Yahoo Utility Interface) widely used by yahoo (fully used in Yahoo! Mail), Dojo, MooTools, Prototype, etc
YUI is supported by Yahoo!
jQuery is supported by every one that uses it!
see domes and take a tour
http://jqueryui.com/demos/
in asp.net you can use Microsoft's
js library (Microsoft Ajax Library) with useful tools, but jQuery is very light and easy to load.
javascript libraries has grew after AJAX release. I'll write more about jQuery (getting started!) in next posts.
Cheers!