show title for disabled select
Title is not displaying for disabled select option. A jquery solution for it.
HTML
<select disabled="disabled">
<option title="Select any One">Select</option>
<option title="Select First">Select 1</option>
<option title="Select Second" selected="selected">Select 2</option>
<option title="Select Third">Select 3</option>
<option title="Select Fourth">Select 4</option>
</select>
JavaScript
$(function() {
$('select option').each(function() {
if($(this).attr('selected') === "selected")
{
$(this).parent().attr('title',$(this).attr('title'));
}
});
});