call ajax javascript code example
Example 1: ajax syntax in javascript
var id = empid;
$.ajax({
type: "POST",
url: "../Webservices/EmployeeService.asmx/GetEmployeeOrders",
data: "{empid: " + empid + "}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(result){
alert(result.d);
console.log(result);
}
});
Example 2: ajax request in javascript
fetch('https://api.covid19api.com/summary')
.then(response => response.json())
.then(data => console.log(data))
.catch(err => {
console.log(err)
});