0
JQuery
How to get a specific one option from drop down lists, if I get specific one option to apply conditions whether the user can select tat option ill disabled tat one.. if any one knows kindly update ur answers. Thank you
1 Answer
0
this will get you all options in a select tag
$("#selectId > option").each(function() { alert(this.text + ' ' + this.value); });