Dakusan's Domain Forum

Main Site Discussion => Updates => Topic started by: Dakusan on November 30, 2009, 09:26:47 pm

Title: AJAX Library v1.0
Post by: Dakusan on November 30, 2009, 09:26:47 pm
Original update for AJAX Library v1.0 can be found at https://www.castledragmire.com/Updates/AJAX_Library_v1.0.
Originally posted on: 11/30/09
Regarding: Other Web Scripts

My AJAX Library v1.0 has been added to the Other Web Scripts project.

It is an AJAX (Asynchronous JavaScript and XML) library for communication between JavaScript and HTTP Servers.

This library has actually been in development for years, and I just never saw the need to release it until now, so I gave it a quick clean up :-).

Title: Re: AJAX Library v1.0
Post by: Dakusan_RestorePosts on January 05, 2011, 08:00:00 am
[Posted by unknown user]

can you give an example of usage please?
Title: Re: AJAX Library v1.0
Post by: Dakusan on January 05, 2011, 09:19:46 pm
GetURL('Query.php', {Parameter1:'Value1', Parameter2:'Value2'}, {CallBack:AjaxResponseReceived});

function AjaxResponseReceived(Data)
{
     alert('Query.php returned the following: '+Data);
}


The documentation (http://www.castledragmire.com/Projects/Other_Web_Scripts#AJAX) has the full list of parameters and options for the function call.