Created
May 9, 2014 10:15
-
-
Save mattosborn/b87ec6231071c959e8bf to your computer and use it in GitHub Desktop.
gu/head.css bookmarklet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
javascript:(function(){ | |
function reloadCss(url){ | |
$("link[href='"+url+"']").remove(); | |
$('head').append('<link rel="stylesheet" type="text/css" href="'+url+'">'); | |
} | |
reloadCss('/assets/stylesheets/head.default.css'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment