/ 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.
