What is this blasphemy?
Printable View
What is this blasphemy?
...What?
Spam threads are not allowed, rubah. Make another and you will be banned.
I'll just pretend that you guys hovered over the emoticons to get the topic.
Pretend? What are we, five? :p
Is this an attempt to be funny?
alternative text is weird I never pay attention to it
Alt text should NOT display when you mouseover an image. :p
:p says "cl_out".
I KNOW, which is why this is weird!
screenshot for proof
http://www.snowy-day.net/stuff/others/wtf.png
What's wrong with your font? You need a Help thread.
It's called anti-aliasing and is not the subject of this thread, which is why is there an apparent 180 from the tone found in this article
Mozilla Web Author FAQ
Hasn't this been default behavior for like.. forever? At least for a very long time. I do remember that Firefox used to not display ALT text like that, but that seems like an eternity away.
What the fudge are you complaining about? Someone could be calling you an ass through alt-text and you'd never know about it. Asking to have it removed is like asking someone to plug your ears for you.
But alt text has always appeared when I mouseover
The thing is Firefox has classically been using the title attribute to show tooltips, while IE has used alt. Neither is completely semantically correct to use as tooltips but title is still miles better than alt, which is supposed to be a text to describe the image's content to act as a replacement for the image to browsers that do not display images, screen readers and such tools, or if the image does not load.
[/web design nerd]
I like alt text though! I've been using it to leave witty or amusing comments in my signature ever since I joined these forums. :p
Firefox is lame.
It's always appeared for me :confused:
Firefox is simply bored and wants to mess with you minds.
It's always been this way, you big fruit.
No it hasn't.
Maybe you've been hallucinating for the past few years. Welcome to the real world. How does it feel to have finally opened your eyes?
So you're saying ranztien and face and all the people that wrote that developer's documentation I linked and all the 'how does I get alt text to show up in firefox' google results are all hallucinating?
Explain why it doesn't happen on other sites! Just eoff!
The... ...not-so Snowy-day. You don't see the alt text pop up on that star, do you?
Don't believe him, rubah! Blue pill! Blue pill!
Maybe you hallucinated them siding with you. I don't know how the minds of lunatics work. But I'll believe you, I'll believe whatever you want me to. Just do me a favour, okay? Just one favour. Slowly place that scalpel in your hand on the floor, then back away, okay?Quote:
Originally Posted by rubah the loonah
Operator, I need an exit.
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 >:[