I have the following code.
<input type="button" value="Dis" onclick="getElementById('Hid').style.visibility='visible';getElementById('Hid').focus()">
In IE it works as expected by displaying a hidden div and then setting focus to that div, however in Firefox the div is displayed but focus is not set.
Any suggestions?