very basic question, but i haven't found an answer for it...
why do some html opening/start tags require a closing/end tag?
for example, <script> requires a </script>, while <img> can (in fact, must) be self-closing (<img src="path.jpg" />)?
i would assume it has to do with requiring content between start and end tags, but with the example of <script>, <script src="file.js"></script> doesn't need anything in between...
i ask because i burned a solid two hours trying to figure out why my included script was working in Safari but not in FF or Chrome. it was because i incorrectly self-closed the script tag. bleh.
imgactually need to be self closing in HTML (4)? E.g. isn't<img ...>valid? HTML is not nearly as ... consistent ... a XML. What aboutp? :-) – user166390 Jun 13 '11 at 1:41<script />tags soon, to be consistent with other HTML5-supporting browsers. – Jeremy Banks Jun 13 '11 at 1:44