Skip to content

Instantly share code, notes, and snippets.

### Keybase proof
I hereby claim:
* I am kmb89144 on github.
* I am kylembarrett (https://keybase.io/kylembarrett) on keybase.
* I have a public key whose fingerprint is 245A 7341 CD36 B10C 9C68 CDF1 B7C3 1B3B 0EE5 2228
To claim this, I am signing this object:
@kmb89144
kmb89144 / comixology.js
Created April 11, 2013 21:27
Script to go through and click all the add to cart buttons in the Comixology #1 issue giveaway
/*On the page where you select the comics you want to add to your cart, open up the javascript console and then paste and run the following code*/
var sections = $('.standard_section');
var currSectionIndex = 0;
function handleSection(section) {
var body = $(section).find('.standard_section_body');
var pages = $(body).find('.adHocPager a');
var currPageIndex = 0;
function getComicsOnPage() {