Is ajax just another name for xmlhttprequest?
No Answer is Posted For this Question
Be the First to Post Answer
Why does html_ajax hang on some server installs?
Are there any security issues with ajax?
The components in the asp.net 2.0 ajax packaging?
How do we get the xmlhttprequest object in ajax?
When will html_ajax have a stable release?
What exactly is the w3c dom?
What are all the technologies used by Ajax?
What is the difference between proxied and proxyless calls in AJAX?
What is xmlhttprequest object in ajax? How can you xmlhttprequest object?
What are the components of the ASP.NET Ajax Client Library?
What does the minimumprefixlength property of the autocompleteextender control do? : asp.net ajax
How can we assign an object in Java Script?? For Example:- ----------- If i create an object "obj1" var obj1 = Object(); obj1.name = "hari"; and if i want to assign it to two objects "obj2" and "obj3" with different names... obj1.name = "gopi" obj2 = new Object(obj1); obj1.name = "raghu" obj3 = new Object(obj1) Now ob2.name become to "raghu" from "gopi". WHY? how to solve the above problem?