I am checking user already exit using ajax in cakephp. everything is right, i got response ok
but if user is not exit then i am not able to submit form following is my code:- problem is in else part, how to submit form.
function checku(email) {
var email=document.getElementById("check").value;
var data='';
$.ajax({
url: '<?php echo BASE_PATH;?>users/alreadyexist/'+email,
type: 'POST',
data: data,
cache: false,
success: function (html) {
var response=html;
if(response=="ok")
{
alert('The user is already Exist');
}
else
{
alert("else");
}
}
});
return false;
}
And this following is button , I m calling function :
<?php echo $this->Form->submit('ssad.png',array('onclick'=>'return checku();'));?>
