vote up 0 vote down star

This sounds like a really basic question. Let's say I have the following Form element

<select id="mySelect">

...

Using jQuery, let's say I want to get it by ID so I can directly access one of its attributes like selectedIndex.

I don't think I can use

var selectedIndex = $("#mySelect").selectedIndex;

because the # selector returns an Array of Elements. If I wish to actually access the select DOM element, then I have to call

var selectedIndex = $("#mySelect").get(0).selectedIndex;

Is this correct? Is there a selector that will let me get directly to the DOM element without having to make an "extra call" to get(0)?

I ask because I'm coming from Prototype where I can just say:

var selectedIndex = $('mySelect').selectedIndex;
flag
Doesn't call to $("#mySelect").selectedIndex work? – shahkalpesh Jun 13 at 3:45
Sorry, I take that back. I tried it & it doesn't work. – shahkalpesh Jun 13 at 5:37

4 Answers

vote up 2 vote down check

There are jQuery ways to get the value of the <select> that don't require you to access the actual DOM element. In particular, you can simply do this to get the value of the currently selected option:

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

Sometimes, however, you do want to access a particular DOM attribute for whatever reason.

While the .get(0) syntax you provided is correct, it is also possible without the function call:

$("#mySelect")[0].selectedIndex;

A jQuery collection behaves as an array-like object and exposes the actual DOM elements through it.

link|flag
vote up 1 vote down

$("#mySelect").val() will do the trick.

link|flag
vote up 0 vote down
$("#mySelect option:selected").val()
link|flag
vote up -1 vote down

I've rarely needed to get the actual DOM element when using jQuery. You can access attributes of the element by using the .attr() method:

var selectedIndex = $("#myselect").attr("selectedIndex");

I'd recommend using the other methods on a select element (in the other answers) but the .attr() method is useful for all elements. You can also set attributes with it:

$("#myselect").attr("selectedIndex", "5");
link|flag
get and set the value by using .val()/.val(newval) – redsquare Jun 13 at 6:45

Your Answer

Get an OpenID
or

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