sprintman04
Programmer
I am using a coding for self.location.reload() belowL
// Record current settings in cookie
function setCurrState(setting) {
var expire = new Date();
expire.setTime(expire.getTime() + ( 8 * 7 * 86400000 ) ); // expire in 8 weeks
document.cookie = "currState=" + escape(setting) + "; expires=" + expire.toGMTString();
self.location.reload();
The problem is that it will work on all computers so far, it will flash once, and will allow to work, on my machine i have 6.0 ie, and it justs keeps on re-flashing, any thoughts
// Record current settings in cookie
function setCurrState(setting) {
var expire = new Date();
expire.setTime(expire.getTime() + ( 8 * 7 * 86400000 ) ); // expire in 8 weeks
document.cookie = "currState=" + escape(setting) + "; expires=" + expire.toGMTString();
self.location.reload();
The problem is that it will work on all computers so far, it will flash once, and will allow to work, on my machine i have 6.0 ie, and it justs keeps on re-flashing, any thoughts