Guest User

Untitled

a guest
Jan 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. $.fn.autoText = function(o){
  2. this.val(o.text);
  3. this.focus(function(){
  4. if(this.value == o.text) this.value = '';
  5. }).blur(function(){
  6. if(this.value == '') this.value = o.text;
  7. });
  8. };
Add Comment
Please, Sign In to add comment