Skip to content

Instantly share code, notes, and snippets.

View kizbitz's full-sized avatar

Jerry Baker kizbitz

View GitHub Profile
@kizbitz
kizbitz / gist:6fd81f193d064bb55bcb
Last active June 27, 2016 10:51 — forked from aaronshaf/bookmarklet-expanded.js
Copy text from Amazon's Cloud Reader
// Useful for students in need of block quotes for their paper, etc.
// Executing with the JavaScript console
new_window=window.open();new_window.document.body.innerHTML = $('iframe').contents().find('iframe').contents().find('body').get(1).innerHTML;
// With a bookmarklet:
javascript:new_window=window.open();new_window.document.body.innerHTML = $('iframe').contents().find('iframe').contents().find('body').get(1).innerHTML;