END OF CRICKET SEASON SALE IS NOW ON
We Accept Afterpay & Zip | Fast Australia-wide shipping

Lynx Arrow Hockey

In stock! Usually ships within 48 hours, except trophy orders.

Production time: 7 working days

$17.15
Maximum quantity available reached.

or make 4 interest-free payments of $4.29 AUD fortnightly with More info


or interest free for up to 6 months with


The Lynx Arrow provides a budget option to complement the larger Lynx range. Affordable antique gold trophy features brilliantly vivid stickers covering many different sports & activities.

Color    Antique Gold
Material    Resin

Sku: LA044

Related products  

Use this link to share your cart
  
// Open the navigation menu items on hover let menuItems = document.querySelector(".header__inline-menu").querySelectorAll("details"); menuItems.forEach(menuItem => { let timeoutId; menuItem.addEventListener("mouseover", () => { clearTimeout(timeoutId); // Clear any existing timeout menuItem.setAttribute("open", true); }); menuItem.addEventListener("mouseleave", () => { // Add a slight delay before closing the menu to allow for movement to the dropdown timeoutId = setTimeout(() => { if (!menuItem.querySelector("ul:hover")) { menuItem.removeAttribute("open"); } }, 100); // Adjust the delay as needed }); // Ensure the dropdown menu stays open when hovered menuItem.querySelector("ul").addEventListener("mouseover", () => { clearTimeout(timeoutId); // Clear the timeout when hovering over the dropdown }); menuItem.querySelector("ul").addEventListener("mouseleave", () => { // Close the menu when leaving the dropdown timeoutId = setTimeout(() => { menuItem.removeAttribute("open"); }, 100); // Adjust the delay as needed }); });