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
document.getElementById('test').onchange = function() {
alert(this.options[this.selectedIndex].value);
};
Does the above the work?
Edit:
Edited to reflect your select id's etc.
var select_element = document.getElementById('product-form-user-enquiry-type');
select_element.onchange = function(e){
if (!e)
var e = window.event;
var svalue = this.options[this.selectedIndex].value;
alert( svalue );
}
See it working at: http://jsfiddle.net/gRoberts/4WUsG/