To get the value of a select element, just use val ().
$('._someDropDown').live('change', function(e) { alert($(this).val()); });
If you want the text of the selected parameter using this:
$('._someDropDown').live('change', function(e) { alert($('[value=' + $(this).val() + ']', this).text()); });
Xhalent 02 Feb '11 at 12:07 2011-02-02 12:07
source share