Skip to content

Instantly share code, notes, and snippets.

@mattosborn
Created May 9, 2014 10:16
Show Gist options
  • Save mattosborn/1235e11f897e3cf6fa58 to your computer and use it in GitHub Desktop.
Save mattosborn/1235e11f897e3cf6fa58 to your computer and use it in GitHub Desktop.
gu/global.css bookmarklet
javascript:(function(){
function reloadCss(url){
$("link[href='"+url+"']").remove();
$('head').append('<link rel="stylesheet" type="text/css" href="'+url+'">');
}
reloadCss('/assets/stylesheets/global.css');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment