Skip to content

Instantly share code, notes, and snippets.

@himanshuahuja96
Created October 29, 2019 08:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save himanshuahuja96/99e9775b1284a6b9ef4c513efb726d63 to your computer and use it in GitHub Desktop.
Save himanshuahuja96/99e9775b1284a6b9ef4c513efb726d63 to your computer and use it in GitHub Desktop.
remove image title attribute on hover
$( document ).ready(function() {
$("classNameOrID").hover(function(){
// Get the current title
var title = $(this).attr("title");
// Store it in a temporary attribute
$(this).attr("tmp_title", title);
// Set the title to nothing so we don't see the tooltips
$(this).attr("title","");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment