Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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();'));?>
share|improve this question
1  
you can directly return from condition after alert – Harry Nov 7 '12 at 7:14
i did it but if i remove return false from outermost function does not work – user201455 Nov 7 '12 at 8:25

1 Answer

return false; put this under the `alert('The user is already Exist');`

In else case just do return true;

if(response=="ok")
{
    alert('The user is already Exist');
    return false;
}
else
{    
    alert("else");
    return true;
}

remove the outermost return false.

It will work even if you dont remove the outermost return false; though.

share|improve this answer
How to put return under the alert? – Harry Nov 7 '12 at 7:17
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'); return true; } else { alert("else"); return false; } } }); } – user201455 Nov 7 '12 at 7:19
if i m doing this return in if and else part it sumbits form in both cases – user201455 Nov 7 '12 at 7:20
How to put return under the alert? . i dont know – user201455 Nov 7 '12 at 7:21
What do you mean how to put it under alert?You just have to cut it from where it is right now and just paste it under that.Check edits in my answer. – techie_28 Nov 7 '12 at 7:22
show 7 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.