vote up 0 vote down star

I've got a span that I'm using as a tooltip for a checkbox on a web page, and I want there to be a line break in the tooltip. None of the following have worked:

<span title='This<br />is a tooltip'></span>
<span title='This 
is a tooltip'></span>
document.getElementById('mySpan').setAttribute('title', 'this\nis a tooltip');

Is this even possible?

Duplicate:

flag

39% accept rate
effective dupe of stackoverflow.com/questions/246438/… – annakata Dec 11 '08 at 17:32

closed as exact duplicate by tvanfosson Dec 11 '08 at 17:34

1 Answer

vote up 0 vote down

discussed here - suggest use JS based tooltips instead

link|flag
Oops :) Searched for 'linebreak', not 'newline'...thanks! – Jonas Dec 11 '08 at 17:37

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