Skip to content

Instantly share code, notes, and snippets.

@schalkburger
Created February 1, 2022 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save schalkburger/cfb8de525ccc37615921746d5093fd24 to your computer and use it in GitHub Desktop.
Save schalkburger/cfb8de525ccc37615921746d5093fd24 to your computer and use it in GitHub Desktop.
A simple bookmarklet to tweet the current page
javascript:(function(){n=getSelection().anchorNode;if(!n){t=document.title;}else{t=n.nodeType===3?n.data:n.innerText;}t=%27“%27+t.trim()+%27”\n\n%27;window.open(`https://twitter.com/compose/tweet?text=${encodeURIComponent(t)}${document.location.href}`)})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment