Jays Logo Badge Tee

$15.00

We accept

30-days Free Returns

See policies

A perfect tee to show support for your Local 9.

  • 4.5 oz., 100% preshrunk ring spun cotton (Sport Grey: 90% ring spun cotton, 10% polyester)
  • Double-needle stitched sleeves and bottom hem
  • High stitch density for smoother printing surface
  • Taped neck and shoulders
  • Modern Classic Fit
  • 5/8″ rib collar

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

  • Available in: 7-10 Business Days

  • Local Pickup Only (Shakopee, MN) - Shipping Not Available

SKU: Categories: T-ShirtsTags: Prior Lake Jays
/* -- The root styles must go in the element of the structure with the name "Add to cart". --*/ 

.single-product-3__add-cart{
  /* Styles for when the product is sold individually */
  &:has(.input-text[type="hidden"]){
    .woocommerce-variation-add-to-cart, .cart{
      flex-direction: column;
    }
  }

  /*-- Styles applied to the container containing the quantity form and the button may vary depending on whether it has variations or not. --*/
  .variations_button, .cart:not(:has(.variations_button)){
    display:flex;
    gap: var(--space-xs);

    /*-- Button styles "Add to cart" --*/
    .button{
      margin-top:0;
      flex: 1;
    }
  }
}
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility. 
 You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.single-product-3__accordion-heading');
const contentFaq = document.querySelectorAll('.single-product-3__accordion-description');

btnFaq.forEach((button) => {
  button.addEventListener('click', () => {
    // Gets the current state of the button
    const isExpanded = button.getAttribute('aria-expanded') === 'true';

    // Reset all buttons to "false".
    btnFaq.forEach((currentBtn) => {
      currentBtn.setAttribute('aria-expanded', 'false');
    });

    // Changes the status of the current button
    button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
  });
});

// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
  // Make a tour on each button there is
  btnFaq.forEach((button, i) => {
    const contentId = contentFaq[i].getAttribute('id');
    button.setAttribute('aria-controls', contentId);
  });
});