Skip to content

Instantly share code, notes, and snippets.

@bnb
Created March 13, 2014 03:43
Show Gist options
  • Save bnb/9521581 to your computer and use it in GitHub Desktop.
Save bnb/9521581 to your computer and use it in GitHub Desktop.
Better working but still not functional cupcake URL share bookmarklet.
javascript:(function() {
var title = encodeURIComponent(location.title);
var url = encodeURIComponent(location.href);
location.href='http://micro.cupcake.io/';
document.querySelector('textarea[name="text"]').textContent = '[' + title + ']' + '(' + url + ')';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment