Umm....Firefox has always done that for me.
Umm....Firefox has always done that for me.
I like Kung-Fu.
Only hockey moms use alt text anyway.
I have no idea what any of you are talking about.
*Also uses firefox but isn't sure what's going on*
I think you are halfway right. I think it has to do with vBulletin. I checked some other websites and found there was no tooltip on any of them, except one that had a vBulletin board running.
If you check the second "" smiley from Pureghetto that shouldn't have a title attribute you'll find it actually has. I suppose vBulletin automatically copies the alt attribute to the title attribute to mimic IE's behavior.
Ok, so I think the title attribute is added in via a function in one of the vBulletin javascript functions which specifically copies alt text to title text. That means it's applying the title attribute after the page source is downloaded, explaining why there's no title in the source code and why the title appears if you inspect the element.
EDIT: Ok, yes, these two functions exist in <a href="http://forums.eyesonff.com/clientscript/vbulletin_global.js">the vbulletin_global.js</a> script. Here you go:PHP Code:// Substantially deobfuscated :p
function child_img_alt_2_title(A) {
var C = A.getElementsByTagName("img");
for(var B = 0; B < C.length; B++) {
img_alt_2_title(C[B])
}
}
function img_alt_2_title(A) {
if(!A.title && A.alt != "") {
A.title = A.alt;
}
}
I guess it's vBulletin messing with your minds, not Firefox![]()
It was a bit of a scare!