I am using Js helper class and i have successfully implement this.I am using following code for using ajax.
$this->Js->link('test','action',array(
'before'=>$this->Js->get('#loader')->effect('fadeIn'),
'success'=>$this->Js->get('#front_album')->effect('fadeIn'),
'update'=>'#front_album'));
Now in this when i try to add animate effect instead of fade In,nothing is happen.I try this in following manner.
$this->Js->get('#loader')->effect('animate','opacity: 1.0');
Please tell me where i am wrong and how can i add the animate effect in this.