Archive for May, 2009

Using Jquery for Ajax Functions

We can use Jquery javascript library to implement AJAX(Asynchronous JavaScript And XML) operations effectively. The basic Jquery library is enough to use Jquery ajax functions.
The syntax for a simple AJAX post request is:
$.post(remotepage,post data,callback function, type of request);
Here remote page denotes any server side remote page, post day will be a key and value pair [...]