Empty Form Field Onclick


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <input type="text" name="txt" id="txt" value="Name"
  2. onblur="if(this.value.length == 0) this.value='Name';" onclick="if(this.value == 'Name') this.value='';" />

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.