Arebesk donates a portion of our proceeds to provide school supplies and educational resources to children in public schools throughout the school year.
Thank you for your support!
Sign up today!
Create an account and receive 10% off your first order!
$(document).ready(function() {
// Wait a moment for the page to fully load
setTimeout(function() {
// Find size selectors with Small as an option
$(".single-option-selector").each(function() {
// Check if this selector has an Small option
if ($(this).find("option[value='Small']").length > 0) {
// Select Small and trigger the change event
$(this).val("Small").trigger("change");
}
});
}, 300);
});