Some may say the Astronaut is out of this world. This easy-to-throw distance driver boasts tremendous speed, glide, and low speed fade for players of all skill levels. It makes your throws longer thanks to its significant turn, but it's worth noting that to allow that turn to shine, you'll need to first get it up to speed. Astronaut has been created to unleash maximum distance for players of all skill levels, especially people moving towards their first high speed driver.
Speed: 12 | Glide: 6 | Turn: -4 | Fade: 1
Choosing a selection results in a full page refresh.
document.addEventListener('DOMContentLoaded', function () {
// Grab all variant images that are linked to variants
const variantImages = document.querySelectorAll('[data-variant-image]');
variantImages.forEach(image => {
// Add an event listener for a click event on each variant image
image.addEventListener('click', function () {
const variantId = this.getAttribute('data-variant-id');
// If the variantId attribute is found, set it as the selected variant
if (variantId) {
const selectElement = document.querySelector('select[name="id"]');
if (selectElement) {
selectElement.value = variantId;
// Dispatch a change event to update the selection
const event = new Event('change');
selectElement.dispatchEvent(event);
}
}
});
});
});