$(document).ready(function() { $("#save_password").click(function(e) { var pwd1 = $("#password").val(); var pwd2 = $("#password2").val(); if ( pwd1 == '' || pwd2 == '' ) { e.preventDefault(); alert("Please input new password"); return; } if ( pwd1 != pwd2 ) { e.preventDefault(); alert("Please confirm password"); return; } var validated = true; if( pwd1.length < 8) validated = false; if( pwd1.length > 20) validated = false; if(/[^0-9a-zA-Z]/.test(pwd1)) validated = false; if(!/\d/.test(pwd1)) validated = false; if ( ! validated ) { e.preventDefault(); alert("Password must have at least 8 characters including alphanumeric characters ( maximum 20 characters )"); return; } }); $("#thank").click(function(e) { e.preventDefault(); window.location = "https://prod-api.heroesguardian.com:4439/forgotpassword/index.phpland.php"; }); });