I have a disabled input field on hover of which i want to do a popup which says this field will be automatically populated.
<input type="text" class="dcol" data-toggle="popover" data-content="Required Field with Numeric Input" disabled="disabled" style="background-color:#FFFF66" value="">
Here is my jQuery which is not working.
$('input:disabled').hover(
function(){
alert("hello");
},
function(){
alert("bye");
}
);
Can anyone suggest how I can achieve this.