Skip to content

Instantly share code, notes, and snippets.

@eculver
Created January 2, 2010 01:02
Show Gist options
  • Select an option

  • Save eculver/267327 to your computer and use it in GitHub Desktop.

Select an option

Save eculver/267327 to your computer and use it in GitHub Desktop.
Auto-refresh bookmarklet
// origin: http://www.google.com/support/forum/p/Chrome/thread?tid=1a37ccbdde5902fd&hl=en
javascript:
timeout=prompt("Set timeout [s]");
current=location.href;
if(timeout>0)
setTimeout('reload()',1000*timeout);
else
location.replace(current);
function reload(){
setTimeout('reload()',1000*timeout);
fr4me='<frameset cols=\'*\'>\n<frame src=\''+current+'\'/>';
fr4me+='</frameset>';
with(document){write(fr4me);void(close())};
}
@jahanson

Copy link
Copy Markdown

Works great.

@dru1313

dru1313 commented May 30, 2017

Copy link
Copy Markdown

Is there something that can be added to this code so it auto scrolls after each refresh? The refresh works great but I need to scroll the page down automatically as well to see all of the new updates.

@Landsil

Landsil commented Apr 13, 2018

Copy link
Copy Markdown

Still works, still useful :)

@pmachart

pmachart commented Mar 5, 2020

Copy link
Copy Markdown

wow, this is 10 years old.
using this to refresh my unit test coverage report while TDDing :)

searched "auto refresh bookmarklet". not disapointed !

@thapakazi

Copy link
Copy Markdown

😮 | 🙇
thanks

@pgross41

pgross41 commented Mar 9, 2021

Copy link
Copy Markdown

This is perfect

@m-asani

m-asani commented Aug 2, 2022

Copy link
Copy Markdown

Amazing !!!

@amineAUPEC

Copy link
Copy Markdown

thanks :)

@for-a-project

Copy link
Copy Markdown

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment