Skip to content

Instantly share code, notes, and snippets.

@olivmonnier
Last active August 29, 2015 14:07
Show Gist options
  • Save olivmonnier/536dd090e777bd7abcd0 to your computer and use it in GitHub Desktop.
Save olivmonnier/536dd090e777bd7abcd0 to your computer and use it in GitHub Desktop.
run gist since a bookmark
javascript: var scriptTag = document.createElement('script');
scriptTag.setAttribute('src', '//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js');
document.querySelector('head').appendChild(scriptTag);
$.ajax({
url:'https://api.github.com/gists/536dd090e777bd7abcd0', dataType: 'jsonp', success: function(data){
eval(data.data.files.script_bookmark.content);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment