Monday, January 14, 2008

Show default Text in Email Field

Details::

Show default Text in Email Field.
Like on form load show "enter email id" in email field.
On click clear this text.
on mouse out with nothing entered show again this into textbox.

Demo:
CODE::


Code:
<body><input type="text" name="email" value="Your e-mail adress" onfocus="if(this.value=='Your e-mail adress') this.value=''" onblur="if(this.value=='' ) this.value='Your e-mail adress';" />

No comments: