This is my code:
When I hover that image \"some title\" appears. Is it possib
You can move it to image data... and back. Like that
$('img').hover( function () { $(this).data('title',$(this).attr('title')).removeAttr('title'); }, function () { $(this).attr('title',$(this).data('title')); } );