- Click here, add to cart. Will show as $56.82
- Click on your cart on the top of the page
- Click the F12 Button in Google Chrome. It will open a new section on the bottom of the screen
- Click the word console on the gray bar.
- Copy and paste the following java code in red letters below. Paste it where the blinking cursor is on the newly opened bottom section of the page exactly as it is shown. After you paste it click Enter to run it. What it will do is automatically generate a coupon code and apply it. If the coupon is accepted the price will drop to other $16.82 or $19.82. If it does then checkout. If it doesn't accept the code then paste the code again in the same spot and press enter again. Keep repeating that until it finds a code that works.
var length = 4;
var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
var result = '';
for (var i = length; i > 0; --i) result += chars[Math.round(Math.random() * (chars.length - 1))];
$("#promoCode").val("CREE6" + result);
$("#updatePromoCode").click();