really simple question and cant figure it out. I am trying to add a line break here on my table header
var text = "<table id='test' class='test'>";
text += "<tr><th> style='font-size:16px'>Cool \nStuff</th></tr>";
I have tried to add a line break using <br>
and \n
and no luck, can anyone help me
` should work. `\n` will not make a difference – epascarello May 01 '15 at 15:20
` tag works perfectly