Forum Moderators: open
I've just tested this with Opera7.21 and IE6 and you can dynamically hide and how an input box:
<style type="text/css">
#datext {visibility:hidden;}
</style>
<input type="text" id="datext"><br>
<a href="#" onClick="document.getElementById('datext').style.visibility='visible';">show me</a>
Toggles the visibility and shows the input box. By using the code above you can write a small function that will show and hide the visibility.
HTH
HTH