Skip to content

Instantly share code, notes, and snippets.

@Schepp
Created March 12, 2013 22:03
Show Gist options
  • Save Schepp/5147513 to your computer and use it in GitHub Desktop.
Save Schepp/5147513 to your computer and use it in GitHub Desktop.
Bookmarklet to have all stylesheets in the current page reload
javascript:(function(){$('link[rel="stylesheet"]').each(function(){var url=$(this).attr('href').replace(/[\?&][^\?&=]+=[0-9]+$/,'');url += (url.indexOf('?') == -1 ? '?' : '&') + 'nocache=' + (new Date()).getTime();console.log(url);$(this).attr('href',url);});})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment