I'm trying to store HTML in a Javascript Variable so that it's easy to read and edit in the future.
I've done this:
var form = [
"<fieldset>",
" <label></label>",
"</fieldset>" ].join("\n");
Only thing is I want it to be easier than that to edit in the future, possibly store it in a variable in PHP (if that's any easier) and then encode it or something.
There is going to be a whole lot more HTML then that