I have been tying to perform hover operation on dynamically added input fields.
$( "body" ).delegate( "input", "hover", function(event) {
    alert("ok");
});
Also tried using but works only for static fields.
 $('input').hover(
    function(event) {
        alert("bring tooltip");
    }, 
    function(event) {
        if (hasfocus) {
            alert("Keep the tooltip");
        }
    }
);
Need suggestions.Thanks
 
     
    