Given the following html, is there a selector that allows me to get both based on type
?
<input type="text" />
<input type="button" />
$('input[type=text || button]'); //for example, double pipes as an OR does not work
I went through the docs, but I couldn't find anything on the ability to use logical operators or a means of providing a matching list.