Skip to content

Instantly share code, notes, and snippets.

@karschsp
karschsp / gist:1defbb85e5154325799b9182ff350bb7
Created December 13, 2017 17:11
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();