Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTML Comments inside Opening Tag of the Element

When I try this

<option disabled = "disabled" <!-- Used to disable any particular option -->
        selected = "selected" <!-- Used to pre-select any particular option -->
        label = "string"      <!-- Used to provide a short version of the content in the option --> 
        value = "value">      <!-- The actual value that will be send to the server. If omitted the content between the option opening and closing tags will be send. -->

Option 1
</option>

I am trying to comment the attributes and values inside the openning tag of the element. However this does not work as browsers (tested on IE9, FF4.01, GG11, AF5 and Opera11) treat everything followed after the disabled="disabled" as either comment or content.

Are HTMl Comments not allowed inside the opening tag of elements?

like image 339
Jawad Avatar asked May 08 '11 09:05

Jawad


People also ask

How do you comment inside a tag in HTML?

In HTML, a comment is text enclosed within < ! ╌ ╌> tags. This syntax tells the browser that they are comments and should not be rendered on the front end. Thanks to the comments tag, you can leave notes to remind yourself where you left off in the build process.

What is the opening tag for a comment?

An HTML comment begins with <! –– and the comment closes with ––> . HTML comments are visible to anyone that views the page source code, but are not rendered when the HTML document is rendered by a browser.

What is the opening tag for block comments?

--...--> Tag.


5 Answers

HTML comments are not allowed inside tags, start or end, at all.

like image 69
Quentin Avatar answered Oct 03 '22 00:10

Quentin


Workarounds for comments inside HTML tags

HTML does not allow you to use <!-- and --> to mark comments inside a tag. However there are workarounds for the main use cases.

To add a comment within an HTML tag

You can just make up an attribute that you use just to comment to yourself. For example:

<div comment="Name and Id">
   ... 
</div>

The major downside is that the comments will not be stripped out during minifying, so:

  • it will take up space in your final HTML document served to the user
  • if the user clicks View source they will be able to read your comments

To temporarily disable an attribute

Just rename the attribute with a prefix that you know to indicate temporary disabling. For example, to disable an attribute called option:

<div option="big">
   ... 
</div>

becomes

<div DISABLED-option="big">
   ... 
</div>

Obviously don't do this if there is actually a valid attribute called disabled-option.

To temporarily disable a class or style

Since there is no error message if you use a class or style that doesn't exist, you can do this to disable a class or style:

For example, to disable a class called tall while preserving a class called highlighted:

<div class="highlighted tall">
   ... 
</div>

becomes

<div class="highlighted DISABLED-tall">
   ... 
</div>

Similarly, to disable the color style while preserving the font-weight style:

<div style="font-weight:700; color:red;">
   ...
</div>

becomes

<div style="font-weight:700; DISABLED-color:red;">
   ...
</div>

Again, remember that these won't be stripped out during minifying so they will take up space in the file the end user receives, and will be viewable with View source.

like image 45
Eureka Avatar answered Oct 03 '22 01:10

Eureka


I have kicked off a standard for structuring HTML comments, called 'HTMLDoc', analogous to JSDoc for Javascript, JavaDoc for Java, etc.

You can read about it here: http://usehtmldoc.surge.sh.

It allows documentation at the tag, attribute and value level.

For your code, it might look something like this:

<!--
@tag option
@attribute disabled Used to disable any particular option
@attribute selected Used to pre-select any particular option
@attribute label Used to provide a short version of the content in the option
@attribute value The actual value that will be send to the server. If omitted the content between the option opening and closing tags will be send.
-->

<option disabled = "disabled"
        selected = "selected"
        label = "string"
        value = "value">
Option 1
</option>
like image 44
Jonathan Avatar answered Oct 02 '22 23:10

Jonathan


No.
According to HTML comment tag those comments are tags like any other HTML-tag and thus can not be placed inside start or end tags.

like image 34
Matthias Avatar answered Oct 02 '22 23:10

Matthias


We cannot use comments inside HTML tags, but we can use comments after or before HTML tags.

like image 42
pinakipb2 Avatar answered Oct 03 '22 00:10

pinakipb2