Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

hide image title on hover css

$('img').hover(
  function () {
    $(this).data('title',$(this).attr('title')).removeAttr('title');
  }, 
  function () {
    $(this).attr('title',$(this).data('title'));
  }
);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #hide #image #title #hover #css
ADD COMMENT
Topic
Name
3+4 =