$(document).ready(function(e) { //alert("here"); }); function changeMobileNo(e) { if(e.keyCode == 13) { SendContactUsEmail(); } } function dataDeletion() { var name = $('#txtName').val(); var phone = $('#txtPhoneNo').val(); var email = $('#txtEmail').val(); if(phone == '') { alert("Please enter Your Phone No."); $("#txtPhoneNo").focus(); return false; } $('#btnUpdateUser').html('Please wait..'); $.ajax({ url: "data_deletion_ajax", type: "post", data: { operation:'dataDeletion', name:name, phone:phone, email:email, }, success: function(data) { //alert(data); alert("Thank you for submitting your details. We will review and take appropriate steps."); //$('#btnUpdateUser').html('SUBMIT'); location.reload(); }, error: function (xhr, ajaxOptions, thrownError) { alert(xhr.status+': '+thrownError); } }); }