I will be giving away free scripts to 30 websites, one every hour. All scripts are guaranteed to work. All depending upon if people click on my link, so tell your friends!! #1 Undefeated
// ==UserScript==
// @name Undefeated Add to Cart
// @namespace undefeated.com
// @description Automatically selects your desired shoe size and add to cart.
// @include http://undefeated.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
function setSelectedIndex(s, v) {
for ( var i = 0; i < s.options.length; i++ ) {
if ( s.options[i].text == v ) {
s.options[i].selected = true;
return;
}
}
}
setSelectedIndex(document.getElementById('color-200'),"11");
function addToCart() { document.getElementById("button-add").click();
}
addToCart();
setTimeout(window.location.href = 'https://undefeated.com/store/checkout/pg',3000);