|
I doubt this would ever be a key feature, "reset" buttons have been blissfully absent from form usability guidelines for quite a few years now.
You could probably just redirect the page back to itself, essentially reloading the form. Totally guessing, but this could work:
<a href="#" onclick="window.location = window.location">Reset Form</a>
|