Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES

GLM.AJAX

GLM.AJAX

Class for performing AJAX.

Returns:

The new GLM.AJAX object.

Example:

var ajax = new GLM.AJAX();

function ajaxCallback(content){
    alert(content); //displays the contents of the page.
}

ajax.callPage("myPage.html", ajaxCallback); //call myPage.html and pass the contents to ajaxCallback.



Overview | IndexGodLikeMouse JavaScript Framework
FRAMES | NO FRAMES