I recently started using a 3G mobile broadband USB drive. This is from T-Mobile, a British mobile network. Everything looked good until I tried to test a site that I developed locally by uploading it to my live server.
When I look at the code of my site, I see that two things are happening:
A script is inserted at the head of my docs: <script src="http://1.2.3.8/bmi-int-js/bmi.js" language="javascript"></script>
Is there something I can add to my code to prevent the script from being inserted?
Usually my css is included in my page, for example:
<link href="style.css" rel="stylesheet" type="text/css" />
however now, when I look in my source, css has been inserted directly into the page between script tags, for example:
<style type="text/css" style="display:none">div.calendar{color:#000;font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;-moz-box-shadow:0px.....
This also happens for some javascript files.
What's happening?