This is my code:
When I hover that image \"some title\" appears. Is it possib
Yes! with jQuery you can remove it on mouseover and add it again onmouseout -
$(function(){ var ttext; $('img').hover(function(){ ttext = $(this).attr('title'); $(this).removeAttr('title'); }, function(){ $(this).attr('title', ttext); }); });