Skip to content

Instantly share code, notes, and snippets.

@neil1023
neil1023 / bjs_coupon_clipper.js
Last active April 26, 2024 14:17
BJs Coupon Clipper
// This script can be run in the browser console
// Just navigate to https://www.bjs.com/myCoupons and execute the script
// This script will clip all the coupons on the current page
//
// Created on 10/13/22
let buttons = document.getElementsByClassName('mt-2 btn gray-btn');
for (let i = 0; i < buttons.length; i++) {
buttons[i].click();
}