Home Page
  • April 23, 2024, 05:24:33 am *
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

Official site launch very soon, hurrah!


Author Topic: AJAX Library v1.0  (Read 11223 times)

Dakusan

  • Programmer Person
  • Administrator
  • Hero Member
  • *****
  • Posts: 536
    • View Profile
    • Dakusan's Domain
AJAX Library v1.0
« 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 :-).

Logged

Dakusan_RestorePosts

  • Jr. Member
  • **
  • Posts: 13
    • View Profile
Re: AJAX Library v1.0
« Reply #1 on: January 05, 2011, 08:00:00 am »

[Posted by unknown user]

can you give an example of usage please?
Logged

Dakusan

  • Programmer Person
  • Administrator
  • Hero Member
  • *****
  • Posts: 536
    • View Profile
    • Dakusan's Domain
Re: AJAX Library v1.0
« Reply #2 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 has the full list of parameters and options for the function call.
Logged