Is there a way to disable browser tooltip from displaying when hovering over elements that have attribute \'title\' populated? Note that I don\'t want to remove title conten
Following Dan Herbert's suggestion above, here is the code:
$(element).hover( function () { $(this).data('title', $(this).attr('title')); $(this).removeAttr('title'); }, function () { $(this).attr('title', $(this).data('title')); });