Good day.
How can I prevent comments from being output in HTML code? In other words, I need to comment out my html/jsp
code, but it is impossible for my comment to be seen in the html
code displayed on the page at the client.
Try to put comments outside the html tags, for example, in PHP.
<Здесь html разметка> <?php //Ваш комментарий ?> </Опять html разметка>
<% //sdfsdf %>
Thank you. - Anton MukhinSource: https://ru.stackoverflow.com/questions/136439/
All Articles