I am producing a javascript-based widget. Nothing complex just a few document.writes...
When I place it inline in the page it renders fine in all browsers. When I place it externally and load it via <script src="http://example.com/path/to/site"/> it fails to render in Firefox and IE but not Chrome.
Anyone know why and a possible workaround?
<script>tag?type="text/javascript"type="text/javascript"is not needed in the<script>tag since JavaScript is presumed as the default scripting language in every browser. You only need it for VBScript (if there's still somebody using it).