vote up 3 vote down star
1

I'd like to know if it's possible to force a newline to show in the tooltip when using title property of a TD. something like

<td title="lineone \n linetwo \n etc...">

Can this be done?

flag

4 Answers

vote up 4 vote down check

Works with IE but not FF.

Try a Javascript Tooltip library for a better result, something like OverLib

link|flag
vote up 0 vote down

I use the jQuery clueTip plugin for this.

link|flag
vote up 1 vote down

If you're looking to put line breaks into the tooltip that appears on mouseover, there's no reliable crossbrowser way to do that. You'd have to fall back to one of the many Javascript tooltip code samples

link|flag
vote up 1 vote down

This should be ok, but is IE specific:

<td title="lineone
linetwo 
etc...">

As others have mentioned, the only other way is to use and HTML + JavaScript based tooltip if your only interested in the tooltip. If this is for accessibility then you will probably need to stick to just single lines for consistancy.

link|flag
I can confirm that this doesn't work. Thanks – spence91 Oct 29 '08 at 11:18
In what context? – Ady Oct 29 '08 at 11:19
sorry, i realise that my question wasn't very descriptive of the solution i was looking for... I'm looking for a way for newlines to show up on the tooltip, i tried this and it doesn't work in IE or firefox. – spence91 Oct 29 '08 at 11:22
Appologies, this should work OK for internet explorer, however I just checked with FireFox, and it looks like the line breaks are ignored. – Ady Oct 29 '08 at 11:24
Apologies again, as it does indeed work in IE, but not firefox – spence91 Oct 29 '08 at 11:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.