AJAX with JQuery
Join the DZone community and get the full member experience.
Join For FreeNow that Visual Studio 2010 has JQuery embeded, i think it is time to have a look at how we can use Ajax with JQuery:
1. Add the results of an AJAX call in an HTML element:
- GET:
We enter the url of the page to call.
- POST:
We enter the url of the page to call and the parameters of the POST call (here, the parameter of the POST call is named “id”).
2. Make an AJAX call and do “something” when the result is received:
- GET:
We enter the url of the page to call and the function to be called when the result is received.
- POST:
We enter the url of the page to call, the parameters of the POST call and the function to be called when the result is received.
Published at DZone with permission of Nikos Printezis, DZone MVB. See the original article here.
Opinions expressed by DZone contributors are their own.
Comments