On a select dropdown, I need to make certain items \'strong/bold\'.
How can I do this?
Example of what I ideally require:
You could do it with jQuery.
$('#Your select').append($("").attr.css("font-weight" , "bold").html("Bold Text"));
You'd have to add some logic to determine which options to bold, obviously.