I want to clear all input and textarea fields in a form. It works like the following when using an input button with the reset
class:
$(".reset").bind("click", function() { $("input[type=text], textarea").val(""); });
This will clear all fields on the page, not just the ones from the form. How would my selector look like for just the form the actual reset button lives in?
bind("click", function() { $("input[type=text], textarea"). val(""); }); This will clear all fields on the page, not just the ones from the form.
To clear all the input in an HTML form, use the <input> tag with the type attribute as reset.
You can easily reset all form values using the HTML button using <input type=”reset”> attribute. Clicking the reset button restores the form to its original state (the default value) before the user started entering values into the fields, selecting radio buttons, checkboxes, etc. There could be many scenarios.
For jQuery 1.6+:
$(':input','#myform') .not(':button, :submit, :reset, :hidden') .val('') .prop('checked', false) .prop('selected', false);
For jQuery < 1.6:
$(':input','#myform') .not(':button, :submit, :reset, :hidden') .val('') .removeAttr('checked') .removeAttr('selected');
Please see this post: Resetting a multi-stage form with jQuery
Or
$('#myform')[0].reset();
As jQuery suggests:
To retrieve and change DOM properties such as the
checked
,selected
, ordisabled
state of form elements, use the .prop() method.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With