$(document).ready(function() { $("#st_loginform").submit(function(){ var error = ""; $("#st_loginform button[type='submit']").html('Please wait'); $("#st_loginform button[type='submit']").attr("disabled","true"); $.ajax({ url: "https://dreamnest.mvss.cloud/login-action", type: "POST", dataType:"json", data: new FormData($("#st_loginform")[0]), async: true, contentType: false, cache: false, processData:false, success: function(data) { $("input[name='"+data.token_name+"']").val(data.token); type = data.type; if(type=='success') { $("#st_loginform button[type='submit']").html(''); window.history.go(-1); return false; } alert(data.text); $("#st_loginform button[type='submit']").html('Login'); $("#st_loginform button[type='submit']").removeAttr("disabled"); }, error: function(xhr, ajaxOptions, thrownError) { alert("500 server error!"); $("#st_loginform button[type='submit']").html('Login'); $("#st_loginform button[type='submit']").removeAttr("disabled"); } }); return false; }); });