Code:
<script src='http://voap.weather.com/weather/oap/60601?template=GENXV&par=1024551575&unit=0&key=78a503e6182c8f064c645be1d116d43a'/><script type="text/javascript"></script>
What you have here, if we expand the short tag and neaten it out a little (URL removed for brevity), is:
Code:
<script src='...'>
</script>
<script type="text/javascript">
</script>
So, one closed script block (which, by the way, won't be recognised in most browsers and so will hide a lot of your page) without a type attribute, and one script block with a type attribute but no actually content. You need to put the type attribute in the existing script tag:
Code:
<script src='http://voap.weather.com/weather/oap/60601?template=GENXV&par=1024551575&unit=0&key=78a503e6182c8f064c645be1d116d43a' type="text/javascript"></script>
Bookmarks