Is there a way to refactor something like this:
$("input[name='InputName1'],input[name='InputName2']").val("");
into something like this:
$("input[name='InputName1|InputName2']").val("");
Essentially, is it possible to select elements based on a set of attribute values without the repetitive parts of the selector?