Umm....Firefox has always done that for me.
Printable View
Umm....Firefox has always done that for me.
Only hockey moms use alt text anyway.
Exactly. Nobody should see alt text.
Let's test something. This following image has an alt text of 'cl_out' and a title of 'clout's smilie':
so it seems like firefox shows title text if it exists, and alt text if it doesn't? This only has alt text:
ugh, this sucks.
I have no idea what any of you are talking about.
*Also uses firefox but isn't sure what's going on*
My pet theory is that it is eoff because it hasn't done it on any other sites and also there isn't a big 'WTF' from the collective nerds as a whole.
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 ":p" 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. :p
EDIT: Ok, yes, these two functions exist in the vbulletin_global.js 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 :p
It was a bit of a scare!
I specifically asked you if there was any arcane javascript that could the culprit and you said no >:[