Currently trying to bind the mouseenter or hover events for a Input tag, my code is somewhat like below
$('#details_Owner').hover(HoverIn, HoverOut);
$('#details_Owner').mouseenter(HoverIn);
$(e.srcElement)
    .parent('.column')
    .children("div")
    .each(function(item) { $(this).remove()});
d = $('<div />')
    .addClass("cstooltip")
    .text($(e.srcElement).val())
    .hide()
$(e.srcElement).parent('.column').append(d);
$(e.srcElement)
    .parent('.column')
    .children("div")
    .show()
The thing that is causing problems is when the input tag is disabled, the events don't fire, is this expected behavior?