[jQuery] filter selects and get value...how?

[jQuery] filter selects and get value...how?


Hi,
I have array of selects, and i filter them with:
$inputs.filter("[name='qty[]']"). I want to get selected value. But i
don't know how...
I tried with:
$inputs.filter("[name='qty[]']").filter("select
option:selected").val();
$inputs.filter(function(){"[name='qty[]']" && "select
option:selected"}).val();
And some other things...but without success...can anyone help?