When I try to type text (between "") in javascript, I have to write everything on 1 line. I can't press enter because my code woudn't be valid then.
Appearantly you can't type on multiple lines in javascript. Is this correct or did I make a mistake?
Example:
var htmlcode = "<strong>29 juni 2013</strong> <br/> 22u";
//This works
var htmlcode = "<strong>29 juni 2013</strong>
<br/>
22u";
//This doesn't work