I am using JQuery 1.8.3. I need to disable all select drop downs which ever id starts with rowNum and i have below code for that.
$('select[id^=rowNum]').prop("disabled","disabled");
Above code works only in IE. But in FF it is not working.
Any suggestion?
Thanks!