try something like this:
<input type="text" value="Enter user ID here"
style="font-style:italic;"
onfocus="this.value='';this.style.fontStyle='normal';"
onblur="clickrecall(this,'Enter user ID here');this.style.fontStyle='italic';">
EDIT: . When we clear the format when the user enters a text field, we must set the fontStyle to italics when it turns off.
source
share