$(document).ready(function() { initForgotten(); }); function initForgotten() { $("#btnForgottenPopup").click(function() { $("#forgottenBox .error").hide(); $.colorbox({ href: "#forgottenBox", inline: true, }); }); $("#forgottenBox .btnSumbit").click(function() { var email = $("#forgottenBox .email").val(); $.get( "/login/send-recovery", {email: email}, function (res) { if (!res || !res.ok) { $("#forgottenBox .error").html(res.message); $("#forgottenBox .error").show(); $.colorbox.resize(); return; } $.colorbox({ href: "#forgottenOk", inline: true }); }, "json" ); }); }