Forum Moderators: open
I would like a div (for live comment preview) to be hidden by default, and show on focus of the comment form - that's all.
Notice : If it shows onfocus and hides onblur it's very annoying and if I go to another window the behavior can even be reversed (onfocus = hide).
<style type="text/css">
#show_hide{display:none;}
</style><div id="show_hide">
ok
</div>
<input type="text" onfocus="document.getElementById('show_hide').syle.display='block';">