Associate
- Joined
- 6 Dec 2002
- Posts
- 661
- Location
- Belfast
I currently use the following Javascript in the <head> section of my HTML code to update the contents every 10 seconds:
This code works perfectly in Firefox but not in IE7 (I haven't tried it in IE6 yet). Are there any obvious reasons why this is the case?
Code:
<script language="javascript" type="text/javascript">
// Update the data every 10 seconds
window.setInterval("getFeedList()", 10000);
</script>