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.

am new to cake,doing Auth login form with ajax response using js helper.searched lot in web got only cake1.3 resource only,need some help in cake 2.x.how to convert this normal jquery to cake jquery use of js helper.thanks in advance

    $(document).ready(function() {

    $("#submit").click(function(e) {

        var form_data = {
            username: $("#username").val(),
            password: $("#password").val(),
            is_ajax: 1
        };

        $.ajax({
            beforeSend:function (XMLHttpRequest) {
                $("#sending").fadeIn();},
            type: "POST",
            url: "<?php echo $this->Html->url(array('controller'=>'users','action'=>'login')); ?>",
            data: form_data,
            success: function(response)
            {
                if(response == 'success') {

                        $("#success").html("<p class='success'>You have logged in successfully!</p>");
                        window.location.href="<?php echo $this->Html->url(array('controller'=>'users','action'=>'index')); ?>"; }

                else
                 {  $("#sending").fadeOut();$("#success").html("<p class='error'>Invalid username and/or password.</p>");   }

            }
        });

        return false;
    });

});
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.