Dear All.
I want to show and hide a DIV tag in each row by clicking on check box.
my code is here:
$myCont="container_".$s;
$e .='<input onclick="showHide('.$myCont.');" type="checkbox" />
and in another file I create DIV with none static id:
$e .='<div id="container_'.$s.'" style="display:none;">';
it is not work in showHide function when I click on check box.
please help me.