//Change the text of a <div> element using an AJAX //request://using JQuery
$("button").click(function(){
$.ajax({url: "demo_test.txt", success: function(result){
$("#div1").html(result);
}});
});
//To send a request to a server, we use the open() //and send() methods of the XMLHttpRequest object:// Javascript
xhttp.open("GET", "ajax_info.txt", true);
xhttp.send();
//example below<html><body><h1>The XMLHttpRequest Object</h1><button type="button" onclick="loadDoc()">Request data</button><p id="demo"></p><script>functionloadDoc() {
var xhttp =newXMLHttpRequest();
xhttp.onreadystatechange =function() {
if (this.readyState ==4&&this.status ==200) {
document.getElementById("demo").innerHTML =this.responseText;
}
};
xhttp.open("GET", "demo_get.asp", true);
xhttp.send();
}
</script></body></html>
Posted by: Guest
on January-17-2020
7
ajax
With Ajax, web applications can send and retrieve data from a server asynchronously without interfering with the display and behaviour of the existing page.
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email