OUR BLOG

Thoughts on development, design and the world we live in.



Multiline document.write

By admin in Uncategorized. Posted on September 24th

I was just refactoring some HTML and needed to move some of my markup out of the HTML file and into a JavaScript method so I can re-use it in multiple HTML files. Using document.write, I didn’t want to put all of the HTML on one line, and also didn’t want to have to add the concatenation operator to each line. I did a quick search for “javascript document.write multiple lines” in google and came up with a useful little tidbit. If you don’t mind the output of the HTML all on one line you can just escape the newline characters in your method call like this:

[jscript]
document.write(‘<div id="outer">\
<div id="inner">blah blah blah</div>\
</div>’);
[/jscript]

super simple way to keep your code easy to read without too much work. All I did was use a search and replace to find all “\n” characters and replace them with “\\n”.

Thanks to Bernard Marx’s post on webmasterworld for this info!

By admin | Posted in Uncategorized | Tagged , | Comments (2)

2 Comments

  1. robert
    Posted April 1, 2012 at 12:05 pm | Permalink

    thanks

  2. Adrian
    Posted January 31, 2013 at 1:12 pm | Permalink

    Super simple, exactly what I needed.

Post a Comment

Your email is never shared. Required fields are marked *

*
*