I need to disable the top option which infact is not an option but just like an instruction for user. I know i can use disabled="disabled" in html but this dropdown is being dynamically populated and so this can only be done using some jquery or javascript. Has anyone done sth like this? This didn't help either:
$("#ctl00_PlaceHolderMain_ctl00_DropDownList1 option[value='Selecet Category']").attr("disabled","disabled");
DIDN'T WORK!
<select name="ctl00$PlaceHolderMain$ctl00$DropDownList1" id="ctl00_PlaceHolderMain_ctl00_DropDownList1">
<option value="Select Category">Select Category</option>
<option value="All Categories">All Categories</option>
<option value="Cancer">Cancer</option>
<option value="Health Lecture">Health Lecture</option>
<option value="Heart Health">Heart Health</option>
</select>