I work with a beautiful little jQuery that automatically downloads and updates divs every blah blah. Works fine on all browsers, then I load IE and hit what a surprise no luck !: (
Index.html
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/ libs/jquery/1.3.0/jquery.min.js"></script> <script type="text/javascript"> var auto_refresh = setInterval( function () { $('#load').load('reload.php').fadeIn("slow"); }, 10000); </script>
reload.php
<? echo time();
Any ideas guys?
javascript jquery
Webby
source share