/ Published in: jQuery
simple jquery code to clear form fields
Expand |
Embed | Plain Text
// clear input field $("input").focus(function() { $("input").attr("value",""); });
You need to login to post a comment.
jelontok on 01/04/11
3 people have marked this snippet as a favorite
onwardonward
fvera
virendrakryadav
simple jquery code to clear form fields
// clear input field $("input").focus(function() { $("input").attr("value",""); });
You need to login to post a comment.