How can line breaks be added within a HTML tooltip?
I tried using and \\n within the tooltip as follows:
\\n
You can use bootstrap tooltip, and don't forget to set the html option to true.
tooltip
$('#tool').tooltip({ title: 'line one' +''+ 'line two', html: true });