I have a form with name orderproductForm and an undefined number of inputs.
I want to do some kind of jQuery.get or ajax or anything like that that would call a page through Ajax, and send along all the …
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 …