2 формы на тестовой страничке: берём только селекты из формы с id="mf"
Код:
|
<form method="POST" action="" id="mf">
<input type="select" name="q1" id="q1" value="" >
<input type="select" name="q2" id="q2" value="" >
<input type="button" name="q3" id="q3" value="" >
<input type="text" name="q4" id="q4" value="" >
<input type="select" name="q5" id="q5" value="" >
</form>
<form method="POST" action="" id="of">
<input type="select" name="q1" id="o1" value="" >
<input type="select" name="q2" id="o2" value="" >
</form> |
var allSelect= $("#mf > [type=select]");
console.log(allSelect);
>> [input#q1, input#q2, input#q5]