vote up 1 vote down star
1

I have the following code:

var tempIdx = document.getElementById('cityBuild').selectedIndex;
var tempBuilding = document.getElementById('cityBuild').options[tempIdx].value;

// Do stuff with tempBuilding

I spent some time trying to do it in jQuery under the assumption it'd be easier, it wasn't. I tried what was given at this site but is never returned any of the values. Am I doing something wrong or is this something that jQuery simply doesn't do?

The item is a select box (single selection only) and I want to get the value from it.

flag

2 Answers

vote up 7 vote down check

jQuery knows how to work with select elements. You can get the value as any other input:

var value = $('#cityBuild').val();
link|flag
That gets the selected text, not the value of the option. – Teifion Jan 25 at 15:01
I thought you wanted the selected text... getting the value is even simpler. Check out my update – Eran Galperin Jan 25 at 15:04
Accepted for being the "righter" way. – Teifion Jan 25 at 23:52
vote up 4 vote down

Little variation to Eran answer:

var value = $('#cityBuild option:selected').val();

EDIT: now Eran is in the right. :)

link|flag
No need to do option:selected if you need only the value.. – Eran Galperin Jan 25 at 15:05
It works! Thank you very much :) – Teifion Jan 25 at 15:18
Eran's answer is the right(er) way of doing it. – Paolo Bergantino Jan 25 at 16:58
It is now; it wasn't, originally. – Craig Stuntz Jan 26 at 15:02
Thank you, Craig :) Yes, it was different, i'll update my answer – tanathos Jan 26 at 15:26

Your Answer

Get an OpenID
or

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