I am trying to output html with jQuery.
$('body').append('
<div>
<div>
<div></div>
</div>
</div>
');
I want to indent the code in this way for higher readability. It works for php but not in JS, any ideas? I use notepad++ as editor.
|
I am trying to output html with jQuery.
I want to indent the code in this way for higher readability. It works for php but not in JS, any ideas? I use notepad++ as editor. |
|||||
|
|
|||
|
|
|
Try something like this:
|
|||
|
|
|
Have you tried using the Javascript string literals? "\n" is a newline, and "\t" is a tab. |
|||
|
|
|
If you want to indent, I suggest using the concatenation operator "+" whenever you want to add a new line in your code:
|
|||
|
|
|
You should be using a templating system for that. No matter how much indentation you use, if you mix to much HTML and Javascript you will end-up will spaghetti code. HTML
Javascript
If you need more control over your template rendering, you need to use a library. I recommend underscore.js, its not the best templating engine for javascript, but it's very lightweight and comes with a great set of helper functions. |
|||
|
|