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
$(\".reset
I got easiest trick to reset form
jQuery("#review-form")[0].reset();
or
$("#review-form").get().reset();