- Friday, December 5, 2008, 18:13
- AJAX, How-To, JQuery, JavaScript
- 32,779 views
Usually AJAX requests are send through GET method. This is because there are few parameters that one send while sending a request through AJAX and also it is relatively easy to create and send a GET method request.
Following code is used generally to create a GET request through AJAX.
function getXMLHttpRequestObject()
{
var xmlhttp;
/*@cc_on
@if (@_jscript_version >= 5)
try ...
Full story
- Monday, December 1, 2008, 20:13
- Featured, JQuery, JavaScript, Web 2.0
- 5,485 views
You must have seen orkut style status update box where in the details can be modified by clicking on it. Once user click the details, details gets populated inside a textbox and an update button. Once update button is clicked, the data gets updated in database.
Similar status update box is available in wordpress ...
Full story