Jays Red/White/Blue Trucker Hat

$20.00

We accept

30-days Free Returns

See policies

Support your favorite townball team with this Richardson 112 trucker hat with a screen-transferred PL Jays logo on the right panel.

The 112 is the standard by which all truckers are measured. Popular for its undeniable quality and versatility, this casual classic is constructed with the trademark attention to detail that we’ve built our reputation on. With a design shaped by more than 50 years of cap-making expertise and available in over 50 colorways, the 112 has inspired many imitations yet continues to be the most popular cap in the USA.

  • Six-panel construction delivers the classic look and feel the 112 is famous for
  • Premium materials and craftsmanship ensure an ideal fit for all sizes
  • Our Standard cotton sweatband provides comfort for all-day wear

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: HatsTags: 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);
  });
});