SPAN Attributed TITLE doesn't work in IE, but works in FF

C

crcucb

Can anyone tell me why this page:
<head>
<Title>testpage</title>
</head><body>
<span title="test">Test</span>
</body>
</HTML>

Doesn't work in IE 6 but works in FF?


When I move the mouse over the word Test in IE, I do not see a 'popup'
or whatever it's called. But in FireFox I do.

Is there some sort of an option in IE to don't do these hovers?
 
S

Sherm Pendley

crcucb said:
Can anyone tell me why this page:
<head>
<Title>testpage</title>
</head><body>
<span title="test">Test</span>
</body>
</HTML>

Doesn't work in IE 6 but works in FF?


When I move the mouse over the word Test in IE, I do not see a 'popup'
or whatever it's called. But in FireFox I do.

The HTML or CSS specification neither requires nor forbids such a popup.
So it's not the case that FireFox is "working" while IE is not; the two
are simply behaving differently.

sherm--
 
R

RobertVA

crcucb said:
Can anyone tell me why this page:
<head>
<Title>testpage</title>
</head><body>
<span title="test">Test</span>
</body>
</HTML>

Doesn't work in IE 6 but works in FF?


When I move the mouse over the word Test in IE, I do not see a 'popup'
or whatever it's called. But in FireFox I do.

Is there some sort of an option in IE to don't do these hovers?

It's commonly called a tool tip.

Have you tried the title property with HTML tags like <a>, <div> or
<td>? You might have more reason to use that property with those tags,
to indicate the results of clicking something an item in a navigation menu.
 
H

Harlan Messinger

crcucb said:
Can anyone tell me why this page:
<head>
<Title>testpage</title>
</head><body>
<span title="test">Test</span>
</body>
</HTML>

Doesn't work in IE 6 but works in FF?


When I move the mouse over the word Test in IE, I do not see a 'popup'
or whatever it's called. But in FireFox I do.

I get a tooltip popup in my IE6 when I do this.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top