Common Ajax Function in Jquery and Javascript to Call Server
Ajax makes your application more flexible, you don’t need to reload or refresh the whole body for small changes, you can made changes in any part without loading page. var xhr; function request_call(url,mydata) { if(xhr && xhr.readyState != 4){ xhr.abort();…