I have
$('body').append("<div id=block> <center> <input type=submit value=submit id=sub> </center> <p id=display_message> </p> </div>");
Instead of this I want to write the code inside append() in an indented manner like this
$('body').append("<div id=block>
<center> <input type=submit value=submit id=sub> </center>
<p id=display_message> </p>
</div>");
but it shows illegal token error. Please help