Back to Content

Comment

files/en-us/web/api/comment/index.md

latest1.1 KB
Original Source

{{ ApiRef("DOM") }}

The Comment interface represents textual notations within markup; although it is generally not visually shown, such comments are available to be read in the source view.

Comments are represented in HTML and XML as content between <!-- and -->. In XML, like inside SVG or MathML markup, the character sequence -- cannot be used within a comment.

{{InheritanceDiagram}}

Instance properties

This interface has no specific property, but inherits those of its parent, {{domxref("CharacterData")}}, and indirectly those of {{domxref("Node")}}.

Constructor

  • {{ domxref("Comment.Comment()", "Comment()") }}
    • : Returns a new Comment object with the parameter as its textual content. If not present, its default value is the empty string, ''.

Instance methods

This interface has no specific method, but inherits those of its parent, {{domxref("CharacterData")}}, and indirectly those of {{domxref("Node")}}.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also