JQuery Tutorial

Define jQuery

How to use jQuery

jQuery Methods

Exercise Methods

jQuery Selectors

jQuery Events

Manipulate CSS Style

jQuery Traversing

jQuery Animations

jQuery AJAX

jQuery Plugins

jQuery Assignment

jQuery AJAX

AJAX = Asynchronous JavaScript and XML. AJAX is the art of exchanging data with a server, and updating parts of a web page - without reloading the whole page.

AJAX load() Method: The load() method loads data from a server and puts the returned data into the selected element.

$("#div1").load("demo_test.txt");

$("#div1").load("demo_test.txt #p1");