I need to create a <br />
tag dynamically with javascript.
var br = document.createElement('br');
And
var br = document.createElement('<br />');
doesn't work
The first option urrently creates a <br>
tag on the page which doesn't pass XHTML standards, is there anyway around this?