The following will work like a charm (if you have div / span / table / tr / td / etc with "id"="myId" )
$("#myId").hover(function() { $(this).css('cursor','pointer').attr('title', 'This is a hover text.'); }, function() { $(this).css('cursor','auto'); });
As a freeware, .css('cursor','pointer') will change the mouse pointer to freeze.
being_ethereal Feb 02 '16 at 10:50 2016-02-02 10:50
source share