Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<select name="item">
<c:forEach items="${combo}" var="id">
    <option value="${id}">${id}</option>
</c:forEach>
</select>

How can we get the selected value from the above dropdown list?

share|improve this question

1 Answer

Direct value should work just fine:

var sel = document.getElementsByName('item');
var sv = sel.value;
alert(sv);

The only reason your code might fail is when there is no item selected, then the selectedIndex returns -1 and the code breaks.

share|improve this answer
Thanks Milind... How can we achieve this without javascript and only in jsp? – Pearl Jan 2 at 12:03
@pearl:whats wrong with javascript? you can write this code in your html with some script snippet. – Milind Anantwar Jan 2 at 12:04
hai milind, how can we include this snippet in jsp? – Pearl Jan 3 at 7:55
You need to use <script> tag for that – Milind Anantwar Jan 3 at 7:56

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.