Friday, 29 April 2016

Html comment tags

<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Remember to add more information here -->
<!--[if IE 8]>
.... some HTML here ....
<![endif]-->
HTML comments tags can also be generated by various HTML software programs.
For example <!--webbot bot--> tags wrapped inside HTML comments by FrontPage and Expression Web.
As a rule, let these tags stay, to help support the software that created them.

No comments:

Post a Comment

remove a property from a JavaScript object?

remove a property from a JavaScript object? delete myObject.regex; // or, delete myObject['regex']; // or, var prop = ...