I seriously can' understand what is going on here !The Jquery is not working at all ! The script is getting generated and everything. but when I click on the submit button it follows the same process as without jquery and ajax. Please help ! thanks. Here is my, Controller:
class MessagesController extends AppController{
public $helpers=array('Js'=>array('Jquery'));
public $components = array('RequestHandler');
public function index(){
if(!empty($this->data)){
if($this->Message->save($this->data)){
if($this->RequestHandler->isAjax()){
$this->render('success','ajax');
$this->Session->setFlash('Ajax');
}
}
}
}
}
?> and here is my View:
<?php echo $this->Html->script('jquery',FALSE); ?>
<?php
echo $this->Form->create();
echo $this->Form->input('name',array('id'=>'id'));
echo $this->Form->input('email',array('id'=>'email'));
echo $this->Form->input('message',array('id'=>'message'));
echo $this->Js->submit('Submit',array(
'before'=>$this->Js->get('#sending')->effect('fadeIn') ,
'success'=>$this->Js->get('#sending')->effect('fadeOut'),
'update'=>'#success'
));
echo $this->Form->end();
?>
<div id="sending" style="display:none;background-color:green" >Sending...</div>
<div id="success"></div>
This is the javascript file being generate,
$("#submit-84782947").bind("click", function (event) {$.ajax({beforeSend:function (XMLHttpRequest) {$("#sending").fadeIn();}, complete:function (XMLHttpRequest, textStatus) {$("#sending").fadeOut();}, data:$("#submit-84782947").closest("form").serialize(), dataType:"html", success:function (data, textStatus) {$("#success").html(data);}, type:"post", url:"\/Cake\/messages"});
return false;});
As I noticed there is no $(document).ready stuff in the generate file, could that be the problem ?