Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm reviewing some html produced by an outside shop.

They use comments inside their external script loading tags - so far as i'm aware this was only useful for very old javascript unaware browsers is there any modern function for this or is it redundant?

<script type="text/javascript" src="path/to/file.js"><!--//--></script>  
share|improve this question
possible duplicate of Are HTML comments inside script tags a best practice? – Kibbee Mar 3 '12 at 2:44

migrated from webmasters.stackexchange.com Mar 3 '12 at 2:39

1 Answer

up vote 7 down vote accepted

No, the habit has not had any grounds for a long time. It was meant to deal with browsers like Netscape 1. Check out e.g. these history notes: http://javascript.about.com/library/blhtmcmt.htm

share|improve this answer
4  
Just to add, CDATA sections do not have a use in HTML either (only in XHTML). – DisgruntledGoat Feb 27 '12 at 11:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.