Skip to content

Instantly share code, notes, and snippets.

@karschsp
Created December 13, 2017 17:11
Show Gist options
  • Save karschsp/1defbb85e5154325799b9182ff350bb7 to your computer and use it in GitHub Desktop.
Save karschsp/1defbb85e5154325799b9182ff350bb7 to your computer and use it in GitHub Desktop.
instapaper text bookmarklet
javascript: function iptxt() {
var d = document;
try {
if (!d.body) throw (0);
window.location = 'http://www.instapaper.com/text?u=' + encodeURIComponent(d.location.href);
} catch (e) {
alert('Please wait until the page has loaded.');
}
}
iptxt();
void(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment