I want to get the value of a select element when the select element is clicked! I want to do it without an onchange
attribute in the HTML.
I would like to achieve this without jQuery. I don't want to include a jQuery framework into this website when this tiny script is the only thing I need.
var select_element = document.getElementById('product-form-user-enquiry-type');
select_element.onchange = function(e){
if (!e)
var e = window.event;
var svalue = select_element.value;
alert( svalue );
}
if ( select_element.captureEvents ){
select_element.captureEvents(Event.CHANGE);
}
The select_element.value;
contains an empty string. How should I do this?
.onchange = function() { ... }
seems to overwrite other handlers, so I use addEventListener("change", function() { ... })Does the above the work?
Edit:
Edited to reflect your select id's etc.
See it working at: http://jsfiddle.net/gRoberts/4WUsG/
A solution that will work with all browsers (including IE8) :