How to call a JavaScript function from the Ajax code?

Showing Answers 1 - 1 of 1 Answers

vasu

  • Oct 8th, 2007
 

Ajax itself is javascript which uses XMLHttpRequest object which takes action event parameters into method call open().AJAX Stands for Asynchronous Java script and XML where in there is no order in which to requests and responses are tracked.

XMLHttpRequest.open() which takes action events as URL Parameters.

XMLHttpRequest.send() which sends the Request object asynchronously or synchronously depending on whether the option for synchronous is true or false.

Remember that there is no particular order in which to receive the requests. That is the basic of Asynchronous communication.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions