Hints and tips on javascript

These are some helpful hints on various topics.

 

Short closed <script> tags may not work in Internet Explorer 6 (IE6)

Short script tags like <script src="file.js" /> do not work in IE6.
You should use <script src="file.js"></script> instead.