I got this small piece of code to reset a form:
$(\"#reset\").click(function() { $(\':input\',\'#fundingpossibility\') .not(\':button, :submit, :rese
Just add another comma (multiple selector), for example:
$("#reset").click(function() { $(':input','#fundingpossibility') .not(':button, :submit, :reset, :hidden, #test') .val(''); });