Image link in the cakephp is not working
$this->Html->link(
$this->Html->image('image',array('class' => $class,
'id' =>'img_id' )), somelink, array('onclick' =>'jQuery(this).modal({width:600,height:400,left:120,top:100}).open(); return false;'),
array(),
array('escape'=>false));
it will output
<a href='link' onclick='jQuery(this).modal({width:600,height:400}).open(); return false;'> < img src='image_path' >
it is not escaping < and > even if i mention escape=>false, but i am not getting where i am missing?
You have too many arguements. Try this: