Can you show the source of the selects, because the description is a little confusing. You have array of selects? So multiple selects, but only one has a value at any one time? Or do you have a multi-selection select and hence you're trying to find the _options_ that are selected?
On Jan 22, 11:43 am, rayfidelity <[EMAIL PROTECTED]> wrote: > 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?