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;
});
});