my ajax links not working after rendering inside another view via ajax. i used delegate function with ajax to prevent it. In first view its working well but in second page it sends multiple request for some click.
Here is my code:
$i=0;
foreach($contents as $conts){
echo CHtml::ajaxLink(conts->name,
array('frontend/dataView','id'=> $conts->content_id,'cat_id'=>$cat->parent_id ),
array('update'=>'#level3rd','beforeSend'=>'function(){$(\'body\').undelegate(\'#cont'.$i.'\', \'click\');}',),
array('id'=>'cont'.$i,'onclick'=>"makeContactive(this.id);"));
$i++;
}