Forum Moderators: open
i have a DIV which contains a onclick function..in IE i just call objDiv.click() and the function is executed.
But with Firefox 3.0.3..this does not work
any suggestion? ....here a sample
function get()
{
alert("clicked");
}
function calldivfunction()
{
mydiv.click();
}
<DIV id=mydiv onclick="get()">DIVDATA</div>
<INPUT TYPE="button" VALUE="CLICK" ONCLICK="calldivfunction()">
u click the button...the div function is executed in IE but FF fails.... :(
Thanks