I have an inline frame where I load a html file. That html files should refresh in 120 seconds with another html (its a sort of news flash). This I have done with javascript and on another page with meta refresh. This works both but IE is giving an annoying click on refreshing the page. Can this be prevented? If not in html perhaps in PHP, asp????? The click is very annoying.
<meta http-equiv="refresh" content="120 ;url=inlin5.htm">
<script Language="JavaScript">
setTimeout("location.href='inlin2.htm'", 120000);
</script>