Using JQuery, we can simply make Ajax call. JQuery provides us simple methods to make Ajax call using GET or POST. We can use any of these HTTP methods to make Ajax request using JQuery.
1. $.get() : Load a remote page using an HTTP GET request.
Syntax: $.get(String url, Map params, Function callback) returns XMLHttpRequest
Example 1: [...]
Posts Tagged ‘jquery’
Ajax using JQuery
Posted in Technical, tagged ajax, get, javascript, jquery, post on July 27, 2008 | 5 Comments »
Why Jquery ?
Posted in Technical, tagged javascript, jquery on July 24, 2008 | Leave a Comment »
There have been a whole bunch of posts on this blog about the differences in code size between jQuery and Prototype. The basic premise of those posts (which I agree with) is that because of the way jQuery code is structured, all sorts of typical Javascript design patterns are rendered shorter and simpler in the [...]