vote up 0 vote down star

hi. I've seen on StackOverflow and googling around that the most used way to get the selected text from a <SELECT> element with jquery is like this

$("#cboId :selected").text()

what I have is not the id, but an object. I have an object, say

var myCombo= $("#cboId");

coming from an earlier piece of code.

I've done like this to get the selected text, but is ugly:

  $("#" + myCombo.attr('id') + " :selected").text() ;

is there any cleaner way to do it?

thanks.

flag

80% accept rate

1 Answer

vote up 1 vote down check
var selectedText = $(":selected",myCombo).text();
link|flag
this looks nice! thanks – pomarc Jun 10 at 9:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.