Hi
i am having problem to get value selected in select Element in which options are added dynamically using JQuery's html() in IE6 , but it works in IE8.
var column = $('#cmbSearch0')[0].value;
Hi
i am having problem to get value selected in select Element in which options are added dynamically using JQuery's html() in IE6 , but it works in IE8.
var column = $('#cmbSearch0')[0].value;
Since id is unique you can do something like this.
Try
var column = $('#cmbSearch0').val();