Posted on 28th April 2025|47 views
Why do we use the jQuery post() method with example?
Posted on 28th April 2025| views
Post() is used to load the data from the server by utilising an HTTP post request:
$("click1").click(function(){
$.post("demo_test.asp", function(data, status){
alert("Info: " + data + "State: " + status);
});
});