www.foresightsports.com Open in urlscan Pro
2620:127:f00f:e::  Public Scan

Submitted URL: https://ctrk.klclick.com/l/01JCEFPJY53ZA28YE07Y6SEVW5_6
Effective URL: https://www.foresightsports.com/?utm_source=Klaviyo&utm_medium=flow&utm_campaign=Copy%20of%20Copy%20of%20Email%20%231&_kx=JGioou...
Submission: On December 16 via api from US — Scanned from DE

Form analysis 4 forms found in the DOM

GET /search

<form class="form-inline form--search" action="/search" method="get" x-data="Search">
  <div class="input-group d-flex">
    <input class="form-control me-sm-2 search" type="search" name="q" value="" placeholder="Search" aria-label="Search" x-ref="searchInput" @input.debounce="search" @focus="showResults" x-show="isFormShown" x-transition="" autocomplete="off"
      autocorrect="off" autocapitalize="off" spellcheck="false" @click.away="isFormShown = false, isResultsShown = false" style="display: none;">
    <div class="input-group-append">
      <button class="btn btn-link nav-link icon-link" type="submit" @click="$nextTick(() => $refs.searchInput.focus())" @click.prevent="showFormOrSubmit">
        <svg class="icon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="-7 -6 32 32">
          <path fill-rule="evenodd" clip-rule="evenodd" d="M11.03 11.68A5.784 5.784 0 112.85 3.5a5.784 5.784 0 018.18 8.18zm.26 1.12a6.78 6.78 0 11.72-.7l5.4 5.4a.5.5 0 11-.71.7l-5.41-5.4z" fill="currentColor"></path>
        </svg>
      </button>
    </div>
  </div>
  <input type="hidden" name="options[prefix]" value="last">
  <input type="hidden" name="type" value="product">
  <div x-show="isResultsShown" class="list-group position-absolute predictive-results" style="display: none;">
    <template x-for="result in results">
      <a class="list-group-item" :href="getUrl" x-show="!result.title.includes('App Exclusive:') &amp;&amp; result.type !== 'FS_OPTIONS_HIDDEN_PRODUCT' &amp;&amp; !result.body.includes('***This is a hidden product')">
          <div class="row">
            <div class="col-3">
              <img class="lazyload" src="//www.foresightsports.com/cdn/shopifycloud/shopify/assets/no-image-50-3d8cc48bd078edcd544c8d60f929ed2d8800a3fc52e0f602e84b1767e392bfcd_50x.gif" :src="getImageThumbnail" width="50" :alt="getTitle">
            </div>
            <div class="col-9" x-text="getTitle"></div>
          </div>
        </a>
    </template>
  </div>
</form>

<form class="cart-mini" id="cartHasItems" x-show="hasItems" style="display: none;">
  <div class="side-cart-body" mini-cart-items="">
    <template x-for="item in getItems">
      <div class="cart-item">
        <div class="d-flex item-wrapper product-card gap-2" id="cart-item-">
          <div class="item-image media-thumb ratio">
            <a href="">
      <img class="lazyload card-img-top" datasrc="//www.foresightsports.com/cdn/shopifycloud/shopify/assets/no-image-160-1cfae84eca4ba66892099dcd26e604f5801fdadb3693bc9977f476aa160931ac_120x120_crop_center.gif" :src="getItemImageThumbnail" width="120" alt="">
    </a>
          </div>
          <div class="item-body flex-fill">
            <a class="btn-close" href="/cart/change?line=&amp;quantity=0" @click.prevent="removeItem"></a>
            <a class="title pe-3" href="" :href="getItemUrl"><div x-text="getItemTitle"></div></a>
            <div x-show="getItemProperties">
              <template x-for="(property, index) in getItemProperties">
                <p x-show="index != 'isAddon' &amp;&amp; index != 'addons'" x-text="index +': '+ property"></p>
              </template>
            </div>
            <div x-show="hasItemOptions">
              <template x-for="option in getItemOptions">
                <p x-text="option"></p>
              </template>
            </div>
            <div class="d-flex gap-2 justify-content-between">
              <div>
                <div class="input-quantity quantity">
                  <label for="quantity-" class="mr-2 visually-hidden" aria-label="Quantity">Quantity</label>
                  <button class="quantity__button no-js-hidden" name="minus" type="button" @click="subtractItemQuantity">
                    <span class="visually-hidden">Quantity</span>
                    <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-minus" fill="none" viewBox="0 0 10 2">
                      <path fill-rule="evenodd" clip-rule="evenodd" d="M.5 1C.5.7.7.5 1 .5h8a.5.5 0 110 1H1A.5.5 0 01.5 1z" fill="currentColor">
                      </path>
                    </svg>
                  </button>
                  <input type="number" class="form-control quantity__input" id="quantity-" name="updates[]" value="" :value="getItemQuantity" @change="updateItemQuantity($el.value)" aria-label="Quantity" min="1" pattern="[0-9]*" quantity-select="">
                  <button class="quantity__button no-js-hidden" name="plus" type="button" @click="addItemQuantity">
                    <span class="visually-hidden">Quantity</span>
                    <svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false" role="presentation" class="icon icon-plus" fill="none" viewBox="0 0 10 10">
                      <path fill-rule="evenodd" clip-rule="evenodd" d="M1 4.51a.5.5 0 000 1h3.5l.01 3.5a.5.5 0 001-.01V5.5l3.5-.01a.5.5 0 00-.01-1H5.5L5.49.99a.5.5 0 00-1 .01v3.5l-3.5.01H1z" fill="currentColor">
                      </path>
                    </svg>
                  </button>
                </div>
              </div>
              <div class="text-end pt-3">
                <p class="price" x-text="getItemPriceWithAddons"></p>
              </div>
            </div>
          </div>
        </div>
      </div>
    </template>
  </div>
</form>

<form aria-live="polite" class="needsclick klaviyo-form klaviyo-form-version-cid_1 go3279073480 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-UKeJhg" novalidate=""
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; border-radius: 0px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 0); background-repeat: no-repeat; background-position-y: 50%; padding: 0px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; justify-content: center;">
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1"
        style="display: flex; justify-content: flex-start; padding: 0px 0px 24px; position: relative; background-color: rgba(0, 0, 0, 0); flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_016JB91TTR00000000000PY9CY" class="needsclick go522671412 kl-private-reset-css-Xuajs1"
            type="email" autocomplete="email" name="email" tabindex="0" placeholder="EMAIL" aria-label="EMAIL" aria-required="true" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 2px; padding: 0px 0px 0px 16px; height: 45px; text-align: left; color: rgb(0, 0, 0); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px; background-color: rgba(255, 255, 255, 0); border: 1px solid rgb(255, 255, 255);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px; position: relative; flex: 1 0 0px;"><button
          class="needsclick go300628013 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgba(0, 0, 0, 0); border-radius: 32px; border-style: solid; border-color: rgb(255, 255, 255); border-width: 1px; color: rgb(255, 255, 255); font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 1px; line-height: 1; white-space: normal; padding-top: 11px; padding-bottom: 11px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; pointer-events: auto; height: auto; width: 100%;">Subscribe</button>
      </div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

<form action="" onsubmit="LO.submit_chat(); return false;">
  <div id="lo_chat_input" style="position:relative; width: 100%; ">
    <div class="lo-fx-hr" style="height:0px; margin-bottom:0px; margin-top:0px; width:100%; border-top:1px solid #000000;border-bottom:1px solid #4f4f4f"></div>
    <div style="padding:10px;"><label for="lo_chat_textarea" style="display:none">Chat Input Box</label><textarea id="lo_chat_textarea" disabled="disabled" rows="2"
        style="color: black; background-color: rgb(255, 255, 255); border-radius: 5px; padding: 7px; height: auto; width: 100%; font-family: sans-serif; text-transform: none; resize: none;" dir="null" data-last-scroll-height="0"></textarea></div>
    <div id="lo_chat_sound_holder" style="position:absolute; right:0px; top:-25px; width:100%;">
      <div style="cursor: pointer; float:right; opacity:0.6; padding-right:10px; height:16px;" id="lo_chat_sound"><img alt="Click to mute chat sounds" src="https://d10lpsik1i8c69.cloudfront.net/graphics/sound-on-white.png" data-cmp-ab="2"
          data-cmp-info="10"></div>
      <div id="lo_chat_status" style="padding-left:10px; font-size:11px; color:#6d6d6d"></div>
      <div style="clear:both;"></div>
    </div>
  </div>
</form>

Text Content

DECEMBER DEALS GOING ON NOW!

 * 
 * 
 * 
 * 


 * 
 * 0
 * 
 * 
 * 
 * 


 * Launch Monitors
   * GCQuad
   * QuadMAX
   * GC3
   * GCHawk
   * Falcon
   * Compare
   * Launch Monitor Add Ons
 * Simulators
   * SIM IN A BOX®
   * Design Your Sim
   * Enclosure Kits
   * Home & Business
 * Software
   * FSX Suite & Integrations
   * FSX Play
   * FSX Pro
   * FSX Courses
   * FSX 2020
 * Accessories
   * FOCUS
   * ForeCaddy™ Smart Cart
   * Launch Monitor Accessories
 * Programs
   * UpNext™ Junior Player Development
   * Foresight U
   * Military Discount
   * QuadMAX Upgrade
   * PEAK
   * FSX Live Login
   * FSX Live Leagues
   * Total Range


SUPPORT

 * CURRENT SPECIALS
 * Contact Sales
 * Support



Scroll


GAME ON

HUGE SAVINGS ON SELECT LAUNCH MONITORS AND SIM IN A BOX® CUSTOM SOLUTIONS.

Shop Now

HUGE SAVINGS ON SELECT LAUNCH MONITORS AND SIM IN A BOX® CUSTOM SOLUTIONS.

Shop Now

HUGE SAVINGS ON SELECT LAUNCH MONITORS AND SIM IN A BOX® CUSTOM SOLUTIONS.

Shop Now


HOW DO YOU WANT TO PLAY?


PLAY SMART

Launch monitors deliver unprecedented insight into every aspect of your
performance. Meet the most awarded and trusted in the industry.

Discover


PLAY ANYTIME

Discover true-to-life golf simulation that fits your space, budget, and
lifestyle - and see why having the best doesn't mean paying the most.

Discover


PLAY ANYWHERE

Play the world’s best and most exclusive courses, practice your skills on the
range, or even compete with players around the world.

Discover


PLAY HEALTHY

It's a whole new game out there. But you can still enjoy the health benefits of
the game on your terms with the ForeCaddy smart cart.

Discover


QUADMAX

The QuadMAX™ sets the new benchmark in professional-grade launch monitor
technology, boasting a touchscreen display, customizable on-device data
parameters, and swing speed training.

Learn MoreBuy Now


FALCON

Unmatched overhead accuracy and reliability with plug & play dual-dexterity
setup for the ideal simulation experience.

Buy NowLearn More


GCQUAD

Indoors and outdoors, from coaching to club fitting to true-to-life golf
simulation, the GCQuad is the most trusted launch monitor available.

Buy NowLearn More


GC3

From the range to the simulator, the GC3 is the personal launch monitor that
never compromises on accuracy and reliability.

Buy NowLearn More


GCHAWK

Righty or lefty, golf or multi-sport, the GCHawk is the overhead mounted
simulation powerhouse for your home or business.

Buy NowLearn More


View All


BUILD YOUR DREAM SIM


GO CUSTOM

Build your dream sim with our easy-to-use Custom Sim Builder tool and get a
price and installation schedule fast.

Design your sim


GO DIY

Our SIM-IN-A-BOX packages deliver unbeatable golf simulator value in a
drop-shipped box delivered right to your door.

Shop Now


PLAY YOUR DREAM COURSES.

With a vast library of world-class courses, our team has re-created every bunker
and lie to ensure your experience is as real as being there.

Learn More


Pebble Beach®, Pebble Beach Golf Links®, the course logo, The Lone Cypress™,
course designs and their respective underlying distinctive images are
trademarks, service marks  and trade dress of Pebble Beach Company. Used
under license.


FORESIGHT SPORTS WORLD


FORESIGHT SPORTS AND THE TRAJECTORY OF DESIGNING GOLF LAUNCH MONITORS

Foresight Sports and the trajectory of designing golf launch monitors


FORBES: "COULD PINSEEKER PURCHASE YIELD ‘WORLD SERIES OF POKER’ FOR SIM GOLF?"

Forbes: "Could PinSeeker Purchase Yield ‘World Series Of Poker’ For Sim Golf?"


QUADMAX UNVEILED AT PGA SHOW 2024

QuadMAX unveiled at PGA Show 2024


FORESIGHT SPORTS BRINGS REVOLUTIONARY NEW PRODUCT TO MARKET

Foresight Sports brings revolutionary new product to market


GOLF.COM: THE SECRETS BEHIND FORESIGHT SPORTS’ UNPRECEDENTED SUCCESS

Golf.com: The Secrets Behind Foresight Sports’ Unprecedented Success


THE GOLF WIRE: FORESIGHT SPORTS ANNOUNCES PARTNERSHIP WITH SPORTSBOX AI

The Golf Wire: Foresight Sports Announces Partnership With Sportsbox AI


FORBES: “TECH TAKES OVER THE U.S. OPEN“

Forbes: “Tech Takes Over The U.S. Open“


WHY GOLF.COM PARTNERED WITH FORESIGHT SPORTS FOR 2022 CLUBTEST

Why GOLF.com partnered with Foresight Sports for 2022 ClubTest


GOLF CHANNEL'S BRANDEL CHAMBLEE TALKS TECH ON TOUR

Golf Channel's Brandel Chamblee talks tech on Tour


RICKIE AT HOME

Rickie at Home


BUTCH HARMON

Butch Harmon


GOLF.COM BREAKS DOWN THE INDUSTRY LEADING GCQUAD

Golf.com breaks down the industry leading GCQuad


THE KINGDOM

The Kingdom


REGGIE AT HOME

Reggie at Home


PGA 2020

PGA 2020


View All


FOLLOW US ON SOCIAL

 * Translation missing: en.general.social.links.instagram
 * Translation missing: en.general.social.links.twitter
 * Translation missing: en.general.social.links.facebook
 * Translation missing: en.general.social.links.linkedin
 * Translation missing: en.general.social.links.vimeo
 * Translation missing: en.general.social.links.youtube

foresightsports
2 days ago


Likes Count
143

Comments Count
1
Share
Share on Facebook
Share on Twitter
Incoming @thepointerbrothers 👀 Join and compete in all of the daily closest to
the pin challenges with @pinseekergame 🎯
Incoming @thepointerbrothers 👀 Join and compete in all of the daily closest to
the pin challenges with @pinseekergame 🎯
foresightsports
4 days ago


Likes Count
163

Comments Count
4
Share
Share on Facebook
Share on Twitter
Dialed 😮‍💨 Do you know your numbers?
Dialed 😮‍💨 Do you know your numbers?
foresightsports
5 days ago


Likes Count
90

Comments Count
1
Share
Share on Facebook
Share on Twitter
The benchmark for launch monitors #QuadMAX 🚀
The benchmark for launch monitors #QuadMAX 🚀
foresightsports
December 9


Likes Count
118

Share
Share on Facebook
Share on Twitter
How many total shots is it taking you to complete the grid challenge? 🎥
@golfdigest
How many total shots is it taking you to complete the grid challenge? 🎥
@golfdigest
foresightsports
December 7


Likes Count
304

Comments Count
2
Share
Share on Facebook
Share on Twitter
The next generation 📈 We are proud to support the @hurricanejrgolf. Good luck
to everyone competing this weekend!
The next generation 📈 We are proud to support the @hurricanejrgolf. Good luck
to everyone competing this weekend!





Item added to cart View cart
0

You have no items in your bag

Quantity Quantity Quantity



Subtotal
$0.00

Shipping & taxes calculated at checkout.

Checkout



Sign up to receive product updates and exclusive online deals

Subscribe
 * Products
   * GCQuad
   * QuadMAX
   * GC3
   * GCHawk
   * Falcon
   * Forecaddy
   * FOCUS
   * Golf Simulators
   * FSX Play
   * FSX Pro
 * Customer Service
   * Contact Us
   * FAQ's
   * Where to Buy
   * International Distributors
   * Support
 * Company
   * About Us
   * Careers
   * Innovation
   * What We Measure
   * Dealer Inquiries
   * Blog
   * Military Discount Program

 * Translation missing: en.general.social.links.instagram
 * Translation missing: en.general.social.links.twitter
 * Translation missing: en.general.social.links.facebook
 * Translation missing: en.general.social.links.linkedin
 * Translation missing: en.general.social.links.vimeo
 * Translation missing: en.general.social.links.youtube

 * (858) 240-8537
 * Privacy Policy
 * Terms & Conditions
 * Purchase Order Terms
 * EULA
 * Trademark Disclaimer
 * Sitemap
 * Accessibility
 * Do Not Sell or Share My Info
 * Vista Supply Chain Disclosure
 * GC2 Discontinuation Notice
 * Privacy Choices
 * Notice at Collection

Designed and Assembled in the USA
© 2024, Foresight Sports
Support &
Download
×





Live Chat is Online 
Chatting
0
×
–

undefined



Chat Input Box

Chat
Powered by