Hi guys,
I'm currently using the title attribute of my 'a' tag to show and hide images that correspond with this tag.
However, when you hover on the 'a' there is the annoying title text that pops up.
Can I disable this pop-up text with out completely disabling the title attribute? ANy help is great!
Cheers,
DanC
-----edit------
here is the working code which passes as xhtml strict!!!!
$(document).ready(function(){
$(\"ul.projects li a\").hover(
function(){
var largeAlt = $(this).attr(\"class\");
$(\"ul.image_display li#image_hover img\").attr({ src: largeAlt });
$(\"ul.image_display li#image_hover img\").fadeIn();
},
function(){
$(\"ul.image_display li#image_hover img\").attr({ src: \"\" });
$(\"ul.image_display li#image_hover img\").fadeIn();
});
});