/ Published in: jQuery
Expand |
Embed | Plain Text
$("input[type='password'], input[type='text'], textarea").each(function(){ $(this).one('focus',function(){ $(this).val(""); }); });
You need to login to post a comment.
yhs on 12/15/10
1 person have marked this snippet as a favorite
$("input[type='password'], input[type='text'], textarea").each(function(){ $(this).one('focus',function(){ $(this).val(""); }); });
You need to login to post a comment.