$("document").ready(function(){ $("input").keyup(function(ev){ if (ev.keyCode==13){ $("button").trigger("click"); } }) $("button").click(function(){ $("button").html(""); $.ajax({url:"/act/phase1", method:"post", data:{email:$("input").val()}}).done(function(data){ if (data !=""){ $("button").addClass("green"); setTimeout(function(){ window.location.href=data; },500); } else { $("button").removeClass("error").addClass("error"); setTimeout(function(){ $("button").removeClass("error"); $("button").html("Continue"); },2000); } }); }); }) var obj = {Page: "/", Url: "/"}; history.pushState(obj, obj.Page, obj.Url);