I need to add a lot of HTML code. To improve readability, I donโt want to write everything on one line, but break them down like plain HTML. It will be like 15 new lines or something like that. The problem is that JavaScript does not allow me to do this.
var target = $('.post .comment_this[rel="' + comment_id + '"]').parent().parent(); target.append(' <div class="replies"> <p>...</p> <img src="" alt="" /> </div> ');
Basically, I need to add HTML to this place.
I also need to add some variables.
source share