JesterJoker
Regular Member
- Jan 13, 2008
- 238
- 28
I have been changing some code I had for a refresh to get around the non refresh IE7 Issue.
By default IE7 does not allow meta refresh.
After testing with
- IE7
- Firefox 2.0
- Google Chrome (Safari 525.13) Yeah its Safari really, but its fast.
I may be a new member here but trying to help you all get some money made.
If you found this helpful, just hit thanks. Also if you can see an issue with this please post a response. And I would appreciate not being razzed about the code.
Yes I know some people block JavaScript but they dont view alot of webpages because of it. So by default its on.
I'm using this to clean my traffic for affiliate sites.
Jester
By default IE7 does not allow meta refresh.
After testing with
- IE7
- Firefox 2.0
- Google Chrome (Safari 525.13) Yeah its Safari really, but its fast.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE></TITLE>
<META HTTP-EQUIV=REFRESH CONTENT="0; URL=http://www.yourSite.com">
<SCRIPT LANGUAGE="JavaScript">
<!?
function time() {
setTimeout("window.location.replace(?http://www.yourSite.com?)",1)
}
?>
</SCRIPT>
</HEAD>
<BODY onLoad="time()">
</BODY>
</HTML>
I may be a new member here but trying to help you all get some money made.
If you found this helpful, just hit thanks. Also if you can see an issue with this please post a response. And I would appreciate not being razzed about the code.
Yes I know some people block JavaScript but they dont view alot of webpages because of it. So by default its on.
I'm using this to clean my traffic for affiliate sites.
Jester