Possible Duplicate:
How can I use a carriage return in a HTML tooltip ?
I would like to display the "title" attribute tooltip in several lines, so it looks like this:
Line 1
Line 2
<div title="Line 1\nLine 2">Secret</div>
but it didn't work.
Is that possible ?
You can enter
. In other words:
<div title="Line 1 Line 2">Secret</div>