Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do we write Equivalent value of this in Jquery

     document.getElementById( "selectbox").
     options[document.getElementById("selectbox").selectedIndex].innerText;
share|improve this question
1  
Is this homework...? – Tomalak Sep 8 '10 at 20:38
4  
Homework for a subject that teaches jQuery? The school must be pretty awesome. – BoltClock Sep 8 '10 at 20:41
@Bolt: The question seems so academic and constructed, I just had to ask. When in real life would you come up with this particular question? – Tomalak Sep 8 '10 at 20:42
@Tomalak: hmmm, it does. And I don't know either, I didn't when I was still learning the basics of jQuery. – BoltClock Sep 8 '10 at 20:44

4 Answers

up vote 9 down vote accepted
$('#selectbox option:selected').text();
share|improve this answer
1  
The child selector is superfluous - select elements can't be nested. :) – Tomalak Sep 8 '10 at 20:44
@Tomalak: fine, I've eaten it now. – BoltClock Sep 8 '10 at 20:45

You want to selected the selected <option> within the <select id="selectbox"> tag and get its text:

$('#selectbox option:selected').text()

Because the selectbox can't really contain anything but options, you can omit that part:

$('#selectbox :selected').text()
share|improve this answer

Like this:

$('#selectbox option:selected').text();

To get it on change event, you can do like this:

$('#selectbox').change(function(){
  alert($('option:selected', $(this)).text());
});
share|improve this answer

The OPs Javascript example is unnecessarily repetitive and complex. It shows plain Javascript in a bad light compared to jQuery when in fact it should be simpler and more concise. This is really not something jQuery should be used for.

document.getElementById('selectbox').value;

Was that so hard? With the element reference stored in a variable it would be as simple as this

selectbox.value;

And For comparison, the jQuery code

$('#selectbox').val();

IMO the plain Javascript is more readable, direct, and certainly more performant.

I would hardly consider this question academic as the example code is so trivial; it does not involve DOM traversal and has no cross browser compatibility issues, which are the main things jQuery was designed to address. So what the point is I'm not really sure...

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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