Related to ISSUE-2031

<html>
<script>
function show()
{
   document.getElementsByTagName('input')[0].style.display='inline';
}
function hide()
{
  document.getElementsByTagName('input')[0].style.display='none';
  window.setTimeout("show()",2000);
}
</script>
<input onclick="hide()" value="abc">
<input value="def"/>

-- 
Erik Dahlstrom, Core Technology Developer, Opera Software
Co-Chair, W3C SVG Working Group
Personal blog: http://my.opera.com/macdev_ed

Received on Thursday, 21 August 2008 15:00:42 UTC