javascript ajax api code example
Example 1: $.ajax javascript
$.ajax({
url: 'https://example.com/your-page',
success:function(data){
//'data' is the value returned.
},
error:function(){
alert('An error was encountered.');
}
});
Example 2: JS ajax
fetch('http://example.com/movies.json')
.then(response => response.json())
.then(data => console.log(data));