www.titan.fitness Open in urlscan Pro
104.18.144.29  Public Scan

Submitted URL: http://trk.titan.fitness/ls/click?upn=zxIspi-2BawBH8CqPeBAj5ZhnSfM5N1yhgIM10rAn1r657gdm6qZn6FWQVZwOfmiJIYTd0CDuFcB1NOxqep...
Effective URL: https://www.titan.fitness/new/?utm_source=Klaviyo&utm_medium=email&utm_campaign=Ongoing-TF-Journey-RetentionComWecome2%20%...
Submission: On October 06 via api from US — Scanned from DE

Form analysis 2 forms found in the DOM

Name: simpleSearchGET /search

<form role="search" action="/search" method="get" name="simpleSearch">
  <input class="form-control search-field" type="text" name="q" id="searchResults" value="" placeholder="What are you looking for?" role="combobox" aria-describedby="search-assistive-text" aria-haspopup="listbox" aria-owns="search-results"
    aria-expanded="false" aria-autocomplete="list" aria-activedescendant="searchSuggestionbox" aria-controls="searchResults" aria-label="Enter Keyword or Item No." autocomplete="off">
  <div class="search-suggestionbox" id="searchSuggestionbox" aria-activedescendant="searchSuggestionbox">
    <div class="row recommended-wrap">
      <div class="rightSection col-md-6">
        <div class="content-asset"><!-- dwMarker="content" dwContentID="bf52049b953030384f27089148" -->
          <div class="sub-title">Popular Searches</div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Power Racks" href="#">Power Racks</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Titan Series" href="#">Titan Series</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Kettlebell" href="#">Kettlebell</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Specialty Machines" href="#">Specialty Machines</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Weight Plates" href="#">Weight Plates</a></div>
          </div>
        </div> <!-- End content-asset -->
      </div>
      <div class="leftSection col-md-6">
        <!-- =============== This snippet of JavaScript handles fetching the dynamic recommendations from the remote recommendations server
and then makes a call to render the configured template with the returned recommended products: ================= -->
        <script>
          (function() {
            // window.CQuotient is provided on the page by the Analytics code:
            var cq = window.CQuotient;
            if (cq && ('function' == typeof cq.getCQUserId) && ('function' == typeof cq.getCQCookieId) && ('function' == typeof cq.getCQHashedEmail) && ('function' == typeof cq.getCQHashedLogin)) {
              var recommender = '[[&quot;All-Products&quot;]]';
              // removing any leading/trailing square brackets and escaped quotes:
              recommender = recommender.replace(/\[|\]|&quot;/g, '');
              var separator = '|||';
              var slotConfigurationUUID = 'bea31d40b55701e6c1fdba344e';
              var contextAUID = '';
              var contextSecondaryAUID = '';
              var contextAltAUID = '';
              var contextType = '';
              var anchorsArray = [];
              var contextAUIDs = contextAUID.split(separator);
              var contextSecondaryAUIDs = contextSecondaryAUID.split(separator);
              var contextAltAUIDs = contextAltAUID.split(separator);
              var contextTypes = contextType.split(separator);
              var slotName = 'search-recommendations';
              var slotConfigId = 'search_recommendations';
              var slotConfigTemplate = 'slots/recommendation/searchProductsSuggestions.isml';
              if (contextAUIDs.length == contextSecondaryAUIDs.length) {
                for (i = 0; i < contextAUIDs.length; i++) {
                  anchorsArray.push({
                    id: contextAUIDs[i],
                    sku: contextSecondaryAUIDs[i],
                    type: contextTypes[i],
                    alt_id: contextAltAUIDs[i]
                  });
                }
              } else {
                anchorsArray = [{
                  id: contextAUID,
                  sku: contextSecondaryAUID,
                  type: contextType,
                  alt_id: contextAltAUID
                }];
              }
              var urlToCall = '/on/demandware.store/Sites-TitanFitness-Site/default/CQRecomm-Start';
              var params = {
                userId: cq.getCQUserId(),
                cookieId: cq.getCQCookieId(),
                emailId: cq.getCQHashedEmail(),
                loginId: cq.getCQHashedLogin(),
                anchors: anchorsArray,
                slotId: slotName,
                slotConfigId: slotConfigId,
                slotConfigTemplate: slotConfigTemplate,
                ccver: '1.03'
              };
              if (cq.getRecs) {
                cq.getRecs(cq.clientId, recommender, params, cb);
              } else {
                cq.widgets = cq.widgets || [];
                cq.widgets.push({
                  recommenderName: recommender,
                  parameters: params,
                  callback: cb
                });
              }
            };

            function cb(parsed) {
              var arr = parsed[recommender].recs;
              if (arr && 0 < arr.length) {
                var filteredProductIds = '';
                for (i = 0; i < arr.length; i++) {
                  filteredProductIds = filteredProductIds + 'pid' + i + '=' + encodeURIComponent(arr[i].id) + '&';
                }
                filteredProductIds = filteredProductIds.substring(0, filteredProductIds.length - 1); //to remove the trailing '&'
                var formData = 'auid=' + encodeURIComponent(contextAUID) + '&scid=' + slotConfigurationUUID + '&' + filteredProductIds;
                var request = new XMLHttpRequest();
                request.open('POST', urlToCall, true);
                request.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
                request.onreadystatechange = function() {
                  if (this.readyState === 4) {
                    // Got the product data from DW, showing the products now by changing the inner HTML of the DIV:
                    var divId = 'cq_recomm_slot-' + slotConfigurationUUID;
                    document.getElementById(divId).innerHTML = this.responseText;
                    //find and evaluate scripts in response:
                    var scripts = document.getElementById(divId).getElementsByTagName('script');
                    if (null != scripts) {
                      for (var i = 0; i < scripts.length; i++) { //not combining script snippets on purpose
                        var srcScript = document.createElement('script');
                        srcScript.text = scripts[i].innerHTML;
                        srcScript.asynch = scripts[i].asynch;
                        srcScript.defer = scripts[i].defer;
                        srcScript.type = scripts[i].type;
                        srcScript.charset = scripts[i].charset;
                        document.head.appendChild(srcScript);
                        document.head.removeChild(srcScript);
                      }
                    }
                  }
                };
                request.send(formData);
                request = null;
              }
            };
          })();
        </script>
        <!-- The DIV tag id below is unique on purpose in case there are multiple recommendation slots on the same .isml page: -->
        <div id="cq_recomm_slot-bea31d40b55701e6c1fdba344e">
          <div class="popular-heading">Popular Products</div>
          <div class="search-items">
            <div class="recommendation-tile">
              <!-- CQuotient Activity Tracking (viewReco-cquotient.js) -->
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ */
                (function() {
                  try {
                    if (window.CQuotient) {
                      var cq_params = {};
                      cq_params.cookieId = window.CQuotient.getCQCookieId();
                      cq_params.userId = window.CQuotient.getCQUserId();
                      cq_params.emailId = CQuotient.getCQHashedEmail();
                      cq_params.loginId = CQuotient.getCQHashedLogin();
                      cq_params.accumulate = true;
                      cq_params.products = [{
                        id: '400698',
                        sku: '',
                        type: '',
                        alt_id: ''
                      }];
                      cq_params.recommenderName = 'All-Products';
                      cq_params.realm = "BDBZ";
                      cq_params.siteId = "TitanFitness";
                      cq_params.instanceType = "prd";
                      cq_params.locale = window.CQuotient.locale;
                      cq_params.slotId = 'search-recommendations';
                      cq_params.slotConfigId = 'search_recommendations';
                      cq_params.slotConfigTemplate = 'slots\/recommendation\/searchProductsSuggestions.isml';
                      if (window.CQuotient.sendActivity) window.CQuotient.sendActivity(CQuotient.clientId, 'viewReco', cq_params);
                      else window.CQuotient.activities.push({
                        activityType: 'viewReco',
                        parameters: cq_params
                      });
                    }
                  } catch (err) {}
                })();
                /* ]]> */
                // -->
              </script>
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ (viewProduct-active_data.js) */
                dw.ac._capture({
                  id: "400698",
                  type: "recommendation"
                });
                /* ]]> */
                // -->
              </script>
              <div class="product" role="group" aria-label="product" data-pid="400698">
                <div class="product-tile">
                  <!-- dwMarker="product" dwContentID="42bc58b478115f1fd0d790fa62" -->
                  <div class="gtmproduct"
                    data-object="{&quot;name&quot;: &quot;Leg Press Hack Squat Machine&quot;, &quot;id&quot;: &quot;400698&quot;, &quot;price&quot;: 1699.97, &quot;category&quot;: &quot;Strength/Specialty Machines/Lower Body&quot;, &quot;brand&quot;: &quot;Titan Fitness&quot;, &quot;position&quot;: &quot;&quot;, &quot;list&quot;: &quot;Category: Strength/Specialty Machines/Lower Body&quot;}">
                  </div>
                  <div class="image-container">
                    <span class="variant-label isOnSale">Sale</span>
                    <a class="gtm-product-list" href="/strength/specialty-machines/lower-body/leg-press-hack-squat-machine/400698.html">
        <img class="tile-image  " src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dw47f28680/images/hi-res/Fitness/401486_01.jpg?sw=261&amp;sh=261" alt="" title="Leg Press Hack Squat Machine" itemprop="image" width="318" height="318">
        
            <img class="tile-image hover" src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dwd5439d3d/images/hi-res/Fitness/400698_03.jpg?sw=261&amp;sh=261" alt="" title="Leg Press Hack Squat Machine" itemprop="image" width="318" height="318">
        

        
            
                <div class="pdp-sale-banner tile-banner" style="background:#F2F2F2; color:#000000;"><i class="icon-clock"></i><span>Limited Time Offer</span></div>
            
        
    </a>
                  </div>
                  <div class="tile-body">
                    <span class="d-none" itemprop="brand">Titan Fitness</span>
                    <span class="d-none" itemprop="sku">400698</span>
                    <span class="d-none" itemprop="mpn">null</span>
                    <span class="d-none" itemprop="description"> null</span>
                    <div class="row tile-body-footer">
                      <div class="ratings col-xs-12 col-sm-12">
                        <div class="ruk_rating_snippet" data-sku="400698"></div>
                      </div>
                    </div>
                    <div class="pdp-link" itemprop="name">
                      <div class="product-tile-name">
                        <a class="gtm-product-list link" href="/strength/specialty-machines/lower-body/leg-press-hack-squat-machine/400698.html" itemprop="url">

                    <span>Leg Press Hack Squat Machine</span>
                
            </a>
                      </div>
                    </div>
                    <div class="price" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
                      <span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="strike-through list">
                          <span class="sr-only">Original price:</span>
                          <span class="value" itemprop="price" content="1899.99">
                            <span class="sup-show">
                              <sup class="dollar-sign">$</sup><span class="int-sale-price">1,899</span><sup>99</sup>
                            </span>
                            <span class="sup-hide ">$1,899.99</span>
                          </span>
                        </span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="sales">
                          <span class="sr-only">Current price:</span>
                          <span class="value" itemprop="price" content="1699.97">
                            <span class="sup-show">
                              <sup class="dollar-sign">$</sup><span class="int-sale-price">1,699</span><sup>97</sup>
                            </span>
                            <span class="sup-hide ">$1,699.97</span>
                          </span>
                        </span>
                        <span class="LimitedDiscountspan LimitedDiscountspanTilesSize">11% off (Save $200)</span>
                      </span>
                      <link itemprop="availability" href="http://schema.org/InStock">
                      <a itemprop="url" tabindex="-1" aria-hidden="true" href="https://www.titan.fitness/strength/specialty-machines/lower-body/leg-press-hack-squat-machine/400698.html"></a>
                    </div>
                    <div class="color-swatches">
                      <div class="swatches">
                      </div>
                    </div>
                    <div class="bottom-bar">
                      <span class="bottom-bar-icon"><i class="icon-shipping"></i>Free Shipping</span>
                      <span class="bottom-bar-icon"><i class="icon-buy"></i>Buy Now, Pay Later</span>
                    </div>
                  </div>
                  <!-- END_dwmarker -->
                </div>
              </div>
            </div>
            <div class="recommendation-tile">
              <!-- CQuotient Activity Tracking (viewReco-cquotient.js) -->
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ */
                (function() {
                  try {
                    if (window.CQuotient) {
                      var cq_params = {};
                      cq_params.cookieId = window.CQuotient.getCQCookieId();
                      cq_params.userId = window.CQuotient.getCQUserId();
                      cq_params.emailId = CQuotient.getCQHashedEmail();
                      cq_params.loginId = CQuotient.getCQHashedLogin();
                      cq_params.accumulate = true;
                      cq_params.products = [{
                        id: '400883',
                        sku: '',
                        type: '',
                        alt_id: ''
                      }];
                      cq_params.recommenderName = 'All-Products';
                      cq_params.realm = "BDBZ";
                      cq_params.siteId = "TitanFitness";
                      cq_params.instanceType = "prd";
                      cq_params.locale = window.CQuotient.locale;
                      cq_params.slotId = 'search-recommendations';
                      cq_params.slotConfigId = 'search_recommendations';
                      cq_params.slotConfigTemplate = 'slots\/recommendation\/searchProductsSuggestions.isml';
                      if (window.CQuotient.sendActivity) window.CQuotient.sendActivity(CQuotient.clientId, 'viewReco', cq_params);
                      else window.CQuotient.activities.push({
                        activityType: 'viewReco',
                        parameters: cq_params
                      });
                    }
                  } catch (err) {}
                })();
                /* ]]> */
                // -->
              </script>
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ (viewProduct-active_data.js) */
                dw.ac._capture({
                  id: "400883",
                  type: "recommendation"
                });
                /* ]]> */
                // -->
              </script>
              <div class="product" role="group" aria-label="product" data-pid="400883">
                <div class="product-tile">
                  <!-- dwMarker="product" dwContentID="d2779e8066a5987f360656adb4" -->
                  <div class="gtmproduct"
                    data-object="{&quot;name&quot;: &quot;Functional Trainer&quot;, &quot;id&quot;: &quot;400883&quot;, &quot;price&quot;: 2499.99, &quot;category&quot;: &quot;Strength/Specialty Machines/Upper Body&quot;, &quot;brand&quot;: &quot;Titan Fitness&quot;, &quot;position&quot;: &quot;&quot;, &quot;list&quot;: &quot;Category: Strength/Specialty Machines/Upper Body&quot;}">
                  </div>
                  <div class="image-container">
                    <a class="gtm-product-list" href="/strength/specialty-machines/upper-body/functional-trainer/400883.html">
        <img class="tile-image  " src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dw63210e79/images/hi-res/Fitness/400883_01.jpg?sw=261&amp;sh=261" alt="" title="image01" itemprop="image" width="318" height="318">
        
            <img class="tile-image hover" src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dw1e579578/images/hi-res/Fitness/400883_03.jpg?sw=261&amp;sh=261" alt="" title="image03" itemprop="image" width="318" height="318">
        

        
            
                <div class="pdp-sale-banner tile-banner-blank"></div>
            
        
    </a>
                  </div>
                  <div class="tile-body">
                    <span class="d-none" itemprop="brand">Titan Fitness</span>
                    <span class="d-none" itemprop="sku">400883</span>
                    <span class="d-none" itemprop="mpn">null</span>
                    <span class="d-none" itemprop="description"> null</span>
                    <div class="row tile-body-footer">
                      <div class="ratings col-xs-12 col-sm-12">
                        <div class="ruk_rating_snippet" data-sku="400883"></div>
                      </div>
                    </div>
                    <div class="pdp-link" itemprop="name">
                      <div class="product-tile-name">
                        <a class="gtm-product-list link" href="/strength/specialty-machines/upper-body/functional-trainer/400883.html" itemprop="url">

                    <span>Functional Trainer</span>
                
            </a>
                      </div>
                    </div>
                    <div class="price" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
                      <span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="sales">
                          <span class="sr-only">Current price:</span>
                          <span class="value" itemprop="price" content="2499.99">
                            <span class="sup-show">
                              <sup class="dollar-sign">$</sup><span class="int-sale-price">2,499</span><sup>99</sup>
                            </span>
                            <span class="sup-hide ">$2,499.99</span>
                          </span>
                        </span>
                      </span>
                      <link itemprop="availability" href="http://schema.org/InStock">
                      <a itemprop="url" tabindex="-1" aria-hidden="true" href="https://www.titan.fitness/strength/specialty-machines/upper-body/functional-trainer/400883.html"></a>
                    </div>
                    <div class="color-swatches">
                      <div class="swatches">
                      </div>
                    </div>
                    <div class="bottom-bar">
                      <span class="bottom-bar-icon"><i class="icon-shipping"></i>Free Shipping</span>
                      <span class="bottom-bar-icon"><i class="icon-buy"></i>Buy Now, Pay Later</span>
                    </div>
                  </div>
                  <!-- END_dwmarker -->
                </div>
              </div>
            </div>
            <div class="recommendation-tile">
              <!-- CQuotient Activity Tracking (viewReco-cquotient.js) -->
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ */
                (function() {
                  try {
                    if (window.CQuotient) {
                      var cq_params = {};
                      cq_params.cookieId = window.CQuotient.getCQCookieId();
                      cq_params.userId = window.CQuotient.getCQUserId();
                      cq_params.emailId = CQuotient.getCQHashedEmail();
                      cq_params.loginId = CQuotient.getCQHashedLogin();
                      cq_params.accumulate = true;
                      cq_params.products = [{
                        id: '401556',
                        sku: '',
                        type: '',
                        alt_id: ''
                      }];
                      cq_params.recommenderName = 'All-Products';
                      cq_params.realm = "BDBZ";
                      cq_params.siteId = "TitanFitness";
                      cq_params.instanceType = "prd";
                      cq_params.locale = window.CQuotient.locale;
                      cq_params.slotId = 'search-recommendations';
                      cq_params.slotConfigId = 'search_recommendations';
                      cq_params.slotConfigTemplate = 'slots\/recommendation\/searchProductsSuggestions.isml';
                      if (window.CQuotient.sendActivity) window.CQuotient.sendActivity(CQuotient.clientId, 'viewReco', cq_params);
                      else window.CQuotient.activities.push({
                        activityType: 'viewReco',
                        parameters: cq_params
                      });
                    }
                  } catch (err) {}
                })();
                /* ]]> */
                // -->
              </script>
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ (viewProduct-active_data.js) */
                dw.ac._capture({
                  id: "401556",
                  type: "recommendation"
                });
                /* ]]> */
                // -->
              </script>
              <div class="product" role="group" aria-label="product" data-pid="401556">
                <div class="product-tile">
                  <!-- dwMarker="product" dwContentID="c9e9b80956e30fb68465c1741a" -->
                  <div class="gtmproduct"
                    data-object="{&quot;name&quot;: &quot;Leg Extension and Curl Machine V2&quot;, &quot;id&quot;: &quot;401556&quot;, &quot;price&quot;: 699.99, &quot;category&quot;: &quot;Strength/Specialty Machines/Lower Body&quot;, &quot;brand&quot;: &quot;Titan Fitness&quot;, &quot;position&quot;: &quot;&quot;, &quot;list&quot;: &quot;Category: Strength/Specialty Machines/Lower Body&quot;}">
                  </div>
                  <div class="image-container">
                    <a class="gtm-product-list" href="/strength/specialty-machines/lower-body/leg-extension-and-curl-machine-v2/401556.html">
        <img class="tile-image  " src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dwbf2116ef/images/hi-res/Fitness/401556_01.jpg?sw=261&amp;sh=261" alt="" title="Leg Extension and Curl Machine V2" itemprop="image" width="318" height="318">
        
            <img class="tile-image hover" src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dwaa4ce241/images/hi-res/Fitness/401556_03.jpg?sw=261&amp;sh=261" alt="" title="Leg Extension and Curl Machine V2" itemprop="image" width="318" height="318">
        

        
            
                <div class="pdp-sale-banner tile-banner-blank"></div>
            
        
    </a>
                  </div>
                  <div class="tile-body">
                    <span class="d-none" itemprop="brand">Titan Fitness</span>
                    <span class="d-none" itemprop="sku">401556</span>
                    <span class="d-none" itemprop="mpn">null</span>
                    <span class="d-none" itemprop="description"> null</span>
                    <div class="row tile-body-footer">
                      <div class="ratings col-xs-12 col-sm-12">
                        <div class="ruk_rating_snippet" data-sku="401556"></div>
                      </div>
                    </div>
                    <div class="pdp-link" itemprop="name">
                      <div class="product-tile-name">
                        <a class="gtm-product-list link" href="/strength/specialty-machines/lower-body/leg-extension-and-curl-machine-v2/401556.html" itemprop="url">

                    <span>Leg Extension and Curl Machine V2</span>
                
            </a>
                      </div>
                    </div>
                    <div class="price" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
                      <span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="sales">
                          <span class="sr-only">Current price:</span>
                          <span class="value" itemprop="price" content="699.99">
                            <span class="sup-show">
                              <sup class="dollar-sign">$</sup><span class="int-sale-price">699</span><sup>99</sup>
                            </span>
                            <span class="sup-hide ">$699.99</span>
                          </span>
                        </span>
                      </span>
                      <link itemprop="availability" href="http://schema.org/InStock">
                      <a itemprop="url" tabindex="-1" aria-hidden="true" href="https://www.titan.fitness/strength/specialty-machines/lower-body/leg-extension-and-curl-machine-v2/401556.html"></a>
                    </div>
                    <div class="color-swatches">
                      <div class="swatches">
                      </div>
                    </div>
                    <div class="bottom-bar">
                      <span class="bottom-bar-icon"><i class="icon-shipping"></i>Free Shipping</span>
                      <span class="bottom-bar-icon"><i class="icon-buy"></i>Buy Now, Pay Later</span>
                    </div>
                  </div>
                  <!-- END_dwmarker -->
                </div>
              </div>
            </div>
            <div class="recommendation-tile">
              <!-- CQuotient Activity Tracking (viewReco-cquotient.js) -->
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ */
                (function() {
                  try {
                    if (window.CQuotient) {
                      var cq_params = {};
                      cq_params.cookieId = window.CQuotient.getCQCookieId();
                      cq_params.userId = window.CQuotient.getCQUserId();
                      cq_params.emailId = CQuotient.getCQHashedEmail();
                      cq_params.loginId = CQuotient.getCQHashedLogin();
                      cq_params.accumulate = true;
                      cq_params.products = [{
                        id: '400937',
                        sku: '',
                        type: '',
                        alt_id: ''
                      }];
                      cq_params.recommenderName = 'All-Products';
                      cq_params.realm = "BDBZ";
                      cq_params.siteId = "TitanFitness";
                      cq_params.instanceType = "prd";
                      cq_params.locale = window.CQuotient.locale;
                      cq_params.slotId = 'search-recommendations';
                      cq_params.slotConfigId = 'search_recommendations';
                      cq_params.slotConfigTemplate = 'slots\/recommendation\/searchProductsSuggestions.isml';
                      if (window.CQuotient.sendActivity) window.CQuotient.sendActivity(CQuotient.clientId, 'viewReco', cq_params);
                      else window.CQuotient.activities.push({
                        activityType: 'viewReco',
                        parameters: cq_params
                      });
                    }
                  } catch (err) {}
                })();
                /* ]]> */
                // -->
              </script>
              <script type="text/javascript">
                //<!--
                /* <![CDATA[ (viewProduct-active_data.js) */
                dw.ac._capture({
                  id: "400937",
                  type: "recommendation"
                });
                /* ]]> */
                // -->
              </script>
              <div class="product" role="group" aria-label="product" data-pid="400937">
                <div class="product-tile">
                  <!-- dwMarker="product" dwContentID="f22264ccb87e9fde0b701eb57e" -->
                  <div class="gtmproduct"
                    data-object="{&quot;name&quot;: &quot;Leverage Squat Machine&quot;, &quot;id&quot;: &quot;400937&quot;, &quot;price&quot;: 649.97, &quot;category&quot;: &quot;Strength/Specialty Machines/Lower Body&quot;, &quot;brand&quot;: &quot;Titan Fitness&quot;, &quot;position&quot;: &quot;&quot;, &quot;list&quot;: &quot;Category: Strength/Specialty Machines/Lower Body&quot;}">
                  </div>
                  <div class="image-container">
                    <span class="variant-label isOnSale">Sale</span>
                    <a class="gtm-product-list" href="/strength/specialty-machines/lower-body/leverage-squat-machine/400937.html">
        <img class="tile-image  " src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dwca367307/images/hi-res/Fitness/400937_01.jpg?sw=261&amp;sh=261" alt="" title="Leverage Squat Machine" itemprop="image" width="318" height="318">
        
            <img class="tile-image hover" src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dwf7291eae/images/hi-res/Fitness/400937_03.jpg?sw=261&amp;sh=261" alt="" title="Leverage Squat Machine" itemprop="image" width="318" height="318">
        

        
            
                <div class="pdp-sale-banner tile-banner" style="background:#F2F2F2; color:#000000;"><i class="icon-clock"></i><span>Limited Time Offer</span></div>
            
        
    </a>
                  </div>
                  <div class="tile-body">
                    <span class="d-none" itemprop="brand">Titan Fitness</span>
                    <span class="d-none" itemprop="sku">400937</span>
                    <span class="d-none" itemprop="mpn">null</span>
                    <span class="d-none" itemprop="description"> null</span>
                    <div class="row tile-body-footer">
                      <div class="ratings col-xs-12 col-sm-12">
                        <div class="ruk_rating_snippet" data-sku="400937"></div>
                      </div>
                    </div>
                    <div class="pdp-link" itemprop="name">
                      <div class="product-tile-name">
                        <a class="gtm-product-list link" href="/strength/specialty-machines/lower-body/leverage-squat-machine/400937.html" itemprop="url">

                    <span>Leverage Squat Machine</span>
                
            </a>
                      </div>
                    </div>
                    <div class="price" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
                      <span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="strike-through list">
                          <span class="sr-only">Original price:</span>
                          <span class="value" itemprop="price" content="739.99">
                            <span class="sup-show">
                              <sup class="dollar-sign">$</sup><span class="int-sale-price">739</span><sup>99</sup>
                            </span>
                            <span class="sup-hide ">$739.99</span>
                          </span>
                        </span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="sales">
                          <span class="sr-only">Current price:</span>
                          <span class="value" itemprop="price" content="649.97">
                            <span class="sup-show">
                              <sup class="dollar-sign">$</sup><span class="int-sale-price">649</span><sup>97</sup>
                            </span>
                            <span class="sup-hide ">$649.97</span>
                          </span>
                        </span>
                        <span class="LimitedDiscountspan LimitedDiscountspanTilesSize">12% off (Save $90)</span>
                      </span>
                      <link itemprop="availability" href="http://schema.org/InStock">
                      <a itemprop="url" tabindex="-1" aria-hidden="true" href="https://www.titan.fitness/strength/specialty-machines/lower-body/leverage-squat-machine/400937.html"></a>
                    </div>
                    <div class="color-swatches">
                      <div class="swatches">
                      </div>
                    </div>
                    <div class="bottom-bar">
                      <span class="bottom-bar-icon"><i class="icon-shipping"></i>Free Shipping</span>
                      <span class="bottom-bar-icon"><i class="icon-buy"></i>Buy Now, Pay Later</span>
                    </div>
                  </div>
                  <!-- END_dwmarker -->
                </div>
              </div>
            </div>
          </div>
        </div>
        <!-- ====================== snippet ends here ======================== -->
      </div>
    </div>
  </div>
  <button type="reset" name="reset-button" class="fas fa-times reset-button d-none" aria-label="Clear search keywords"></button>
  <button type="submit" name="search-button" class="icon-search" aria-label="Submit search keywords"></button>
  <div class="suggestions-wrapper" data-url="/on/demandware.store/Sites-TitanFitness-Site/default/SearchServices-GetSuggestions?q="></div>
  <input type="hidden" value="default" name="lang">
</form>

<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-RmtkEW" novalidate="" tabindex="-1"
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; border-radius: 2px; 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: 10px 5px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; min-height: 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; position: relative; 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_61921402" class="needsclick go477533755 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Email Address" aria-label="Email Address" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 2px; padding: 0px 0px 0px 16px; height: 40px; text-align: left; color: rgb(0, 0, 0); font-family: neue-haas-grotesk-display, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 14px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(255, 255, 255);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
      <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: 0 1 auto; margin: 0px 0px 0px auto;">
        <button class="needsclick go54166860 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgb(255, 255, 255); border-radius: 2px; border-style: none; border-color: rgb(0, 0, 0); border-width: 2px; color: rgb(0, 0, 0); font-family: neue-haas-grotesk-display, Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 24px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding: 0px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: 40px;">➔</button>
      </div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

Text Content

Skip to content
 * FREE Shipping On All Orders
 * Order By 11am CT, Most Items Ship Same Day*
 * Buy Now, Pay Later

Titan Fitness
Popular Searches
Power Racks
Titan Series
Kettlebell
Specialty Machines
Weight Plates
Popular Products
Sale
Limited Time Offer
Titan Fitness 400698 null null

Leg Press Hack Squat Machine
Original price: $1,89999 $1,899.99 Current price: $1,69997 $1,699.97 11% off
(Save $200)

Free Shipping Buy Now, Pay Later
Titan Fitness 400883 null null

Functional Trainer
Current price: $2,49999 $2,499.99

Free Shipping Buy Now, Pay Later
Titan Fitness 401556 null null

Leg Extension and Curl Machine V2
Current price: $69999 $699.99

Free Shipping Buy Now, Pay Later
Sale
Limited Time Offer
Titan Fitness 400937 null null

Leverage Squat Machine
Original price: $73999 $739.99 Current price: $64997 $649.97 12% off (Save $90)

Free Shipping Buy Now, Pay Later


Back
 
 * Racks
    * 
      Shop All Racks
       * Power Racks
       * Rack Accessories
       * Squat Stands
       * Space Saving Racks
         
         
   
    * 
      T-2 Series Our most budget-friendly option. Perfect for home gym
      beginners.
       * T-2 Power Racks
       * T-2 Rack Accessories
      
      Shop All t-2 series
   
    * 
      T-3 Series A step up from T-2. Larger 2”x3” uprights, thicker 11-gauge
      steel and more options.
       * T-3 Power Racks
       * T-3 Squat Stands
       * T-3 Space Saving Racks
       * T-3 Rack Accessories
      
      Shop All t-3 series
   
    * 
      X-3 Series All the features of T-3, but with larger 3” x 3” uprights and
      11-gauge steel.
       * X-3 Power Racks
       * X-3 Squat Stands
       * X-3 Space Saving Racks
       * X-3 Rack Accessories
      
      Shop All X-3 series
   
    * 
      TITAN Series All the features of X-3 plus numbered uprights with color
      options.
       * TITAN Series Power Racks
       * TITAN Series Rack Accessories
      
      Shop All TITAN series
   
   ⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop
   Now
 * Benches
    * Shop All Benches
      
      All Benches
    * Flat Benches
      
      Flat Benches
    * Adjustable Benches
      
      Adjustable Benches
    * Specialty Benches
      
      Specialty Benches
   
   ⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop
   Now
 * Bars & Weights
    * 
      Shop All Barbells Barbells
       * Olympic Barbells
       * Specialty Barbells
       * Fixed Weight Barbells
       * Barbell Accessories
   
    * 
      Shop All Weight Plates Weight Plates
       * Bumper Plates
       * Cast Iron Plates
       * Specialty Weight Plates
   
    * 
      Shop All Dumbbells Dumbbells
       * Rubber Hex Dumbbells
         
       * Urethane Dumbbells
       * Adjustable Dumbbells
       * Dumbbell Storage
   
    * 
      Shop All Kettlebells Kettlebells
       * Cast Iron Kettlebells
       * Competition Kettlebells
       * Adjustable Kettlebells
   
    * 
      Shop All Weight Balls Weight Balls
       * Wall Balls
       * Slam Balls
       * Medicine Balls
       * Dual Grip Balls
   
    * 
      Shop All Functional Weights Functional Weights
       * Heavy Hammers
       * Steel Clubs
   
   ⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop
   Now
 * Specialty Machines
    * Functional Trainers
      
      Functional Trainers
    * Upper Body Machines
      
      Upper Body Machines
    * Lower Body Machines
      
      Lower Body Machines
    * Stack Weight Machines
      
      Stack Weight Machines
    * Plate-Loaded Machines
      
      Plate-Loaded Machines
   
   ⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop
   Now
 * More Equipment
    * 
      Shop All Cardio Cardio
       * Titan Fitness® Fan Bike
       * Sleds
       * Sand Bags
       * Weight Vests
       * Ropes
       * Aerobics
       * Boxing Equipment
   
    * 
      Shop All Plyo Boxes Plyo Boxes
       * Wooden Plyo Boxes
       * Steel Plyo Boxes
       * Foam Plyo Boxes
   
    * 
      Shop All Carry Carry
       * Yokes
       * Farmers Walk
       * Slamballs
       * Other Carry
   
    * 
      Shop All Gym Accessories Gym Accessories
       * Pull Up Bars
       * Deadlift Platforms
       * Landmines
       * Gym Flooring
       * Gym Timers
       * Belts
   
      
    * Gear and Apparel
      
      Gear and Apparel
   
   ⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop
   Now
 * Storage
    * 
      Shop All Free Standing Storage Free Standing Storage
       * Barbells, Kettlebells & Dumbbell Storage
       * Mass Storage System
       * Weight Plate Storage
   
    * 
      Shop All Mount Storage Mount Storage
       * Rack Mounted Barbell Holders
       * Rack Mounted Weight Holders
       * Wall Mounted Storage
   
    * 
      Shop All Standing Desk Standing Desks
       * Adjustable Frames
       * Combo & Accessories
       * Desktop
   
   ⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop
   Now
 * New
 * Sale

Log in Or Create Account
Search
0


⚡ FLASH DEAL - $125 Off Plate Loaded Deltoid And Shoulder Press Machine Shop Now
Remove Product? ×
Are you sure you want to remove the following product from the cart?



Cancel Yes
 1. new


TITAN FITNESS NEW PRODUCTS


NEW OLYMPIC GYM EQUIPMENT FOR SALE

The latest and greatest from Titan all at unbeatable prices with free shipping.
Come here often to check for the latest releases from Titan including the latest
workout and gym gear.

Price
 * $51 - $175 (4)
 * $176 - $300 (4)
 * $401 and up (1)

Availability
 * Ready to Ship (8)

11 Items
Sort By: Sort order Best Matches Price Low To High Price High to Low Product
Name A - Z Product Name Z - A Best Sellers
Filters


Filter by
Filter by

View Results
11 Items
Sort By: Sort order Best Matches Price Low To High Price High to Low Product
Name A - Z Product Name Z - A Best Sellers
Filters

Titan Fitness 401846 null null



RACK MOUNTED SQUATMAX-MD

Current price: $1,29999 $1,299.99

Free Shipping Buy Now, Pay Later
Titan Fitness 422172 null null
(11 Reviews)


50 LB WARRIOR KETTLEBELL

Current price: $14999 $149.99

Free Shipping Buy Now, Pay Later
Titan Fitness 430367 null null
(6 Reviews)


PERFORMANCE SERIES OLYMPIC BARBELL

Current price: $14999 $149.99

Free Shipping Buy Now, Pay Later
Titan Fitness 430368 null null



PERFORMANCE SERIES POWER BARBELL

Current price: $14999 $149.99

Free Shipping Buy Now, Pay Later
Titan Fitness 430380 null null
(3 Reviews)


ELITE SERIES POWER BARBELL

Current price: $22999 $229.99

Free Shipping Buy Now, Pay Later
Sale
Limited Time Offer
Fitness 429230 null null



ELITE SERIES 30 LB WEIGHT VEST

Original price: $9499 $94.99 Current price: $5397 $53.97 44% off (Save $41)

Free Shipping Buy Now, Pay Later
Fitness 430379 null null



ELITE SERIES WOMEN’S OLYMPIC BARBELL

Current price: $19999 $199.99

Free Shipping Buy Now, Pay Later
Fitness 401848 null null



TITAN SERIES SINGLE POST FLAT BENCH

Current price: $23999 $239.99

Free Shipping Buy Now, Pay Later
Fitness 430378 null null



ELITE SERIES OLYMPIC BARBELL

Current price: $22999 $229.99

Free Shipping Buy Now, Pay Later
Titan Fitness 401843 null null
(7 Reviews)


SQUATMAX-MD

Current price: $1,49999 $1,499.99

Out of Stock
Free Shipping Buy Now, Pay Later
Titan Fitness 401842 null null
(2 Reviews)


2 TIER SADDLE DUMBBELL RACK

Current price: $59999 $599.99

Out of Stock
Free Shipping Buy Now, Pay Later



NEW EXERCISE EQUIPMENT

New exercise equipment from Titan Fitness, come back and check for new releases!

Customer Support If you need some support, we’re happy to help.
Call

To place a new order or for assistance with an existing order call 888-410-1503.

Mon-Fri: 7am - 6pm CT
Sat-Sun: Closed
Live Chat

Have questions or need help? Chat with us using the icon in the bottom right.

Mon-Fri: 8am-4:30pm CT
Sat-Sun: Closed
Email

You can also email us for customer service or product support.

Most emails are answered within 1 business day, but can take up to 3 business
days.

If you need to file a warranty claim, please submit your information here.

Sign Me Up

Be first to know about new products, deals and giveaways.

➔

Our Company
 * About Titan
 * Careers
 * Affiliate Program
 * Financing
   

Customer Service
 * Contact Us
 * Track Order
 * Warranty
 * Return Policy
 * Shipping Policy

Learn More
 * Blog
   
 * YouTube Channel

Account
 * Sign In
 * Create an Account

US

Terms Of UsePrivacy NoticeSite Map
© 2023 Titan Brands. All Rights Reserved.


×






Afghanistan
Åland
Albania
Algeria
American Samoa
Andorra
Angola
Anguilla
Antarctica
Antigua and Barbuda
Argentina
Armenia
Aruba
Australia
Austria
Azerbaijan
Bahamas
Bahrain
Bangladesh
Barbados
Belarus
Belgium
Belize
Benin
Bermuda
Bhutan
Bolivia
Bonaire, Sint Eustatius and Saba
Bosnia and Herzegovina
Botswana
Bouvet Island
Brazil
British Indian Ocean Territory
British Virgin Islands
Brunei
Bulgaria
Burkina Faso
Burundi
Cambodia
Cameroon
Canada
Cape Verde
Cayman Islands
Central African Republic
Chad
Chile
China
Christmas Island
Cocos (Keeling) Islands
Colombia
Comoros
Congo
Congo (Democratic Republic)
Cook Islands
Costa Rica
Croatia
Cuba
Curaçao
Cyprus
Czechia
Denmark
Djibouti
Dominica
Dominican Republic
East Timor
Ecuador
Egypt
El Salvador
Equatorial Guinea
Eritrea
Estonia
Eswatini
Ethiopia
Falkland Islands
Faroe Islands
Fiji
Finland
France
French Guiana
French Polynesia
French Southern Territories
Gabon
Gambia
Georgia
Germany
Ghana
Gibraltar
Greece
Greenland
Grenada
Guadeloupe
Guam
Guatemala
Guernsey
Guinea
Guinea-Bissau
Guyana
Haiti
Heard Island and McDonald Islands
Honduras
Hong Kong
Hungary
Iceland
India
Indonesia
Iran
Iraq
Ireland
Isle of Man
Israel
Italy
Ivory Coast
Jamaica
Japan
Jersey
Jordan
Kazakhstan
Kenya
Kiribati
Korea (North)
Korea (South)
Kuwait
Kyrgyzstan
Laos
Latvia
Lebanon
Lesotho
Liberia
Libya
Liechtenstein
Lithuania
Luxembourg
Macao
Madagascar
Malawi
Malaysia
Maldives
Mali
Malta
Marshall Islands
Martinique
Mauritania
Mauritius
Mayotte
Mexico
Micronesia
Moldova
Monaco
Mongolia
Montenegro
Montserrat
Morocco
Mozambique
Myanmar
Namibia
Nauru
Nepal
Netherlands
New Caledonia
New Zealand
Nicaragua
Niger
Nigeria
Niue
Norfolk Island
North Macedonia
Northern Mariana Islands
Norway
Oman
Pakistan
Palau
Palestine
Panama
Papua New Guinea
Paraguay
Peru
Philippines
Pitcairn
Poland
Portugal
Puerto Rico
Qatar
Réunion
Romania
Russia
Rwanda
Saint Martin (French)
Samoa
San Marino
Sao Tome and Principe
Saudi Arabia
Senegal
Serbia
Seychelles
Sierra Leone
Singapore
Sint Maarten (Dutch)
Slovakia
Slovenia
Solomon Islands
Somalia
South Africa
South Georgia and the South Sandwich Islands
South Sudan
Spain
Sri Lanka
St Barthélemy
St Helena, Ascension and Tristan da Cunha
St Kitts and Nevis
St Lucia
St Pierre and Miquelon
St Vincent
Sudan
Suriname
Svalbard and Jan Mayen
Sweden
Switzerland
Syria
Taiwan
Tajikistan
Tanzania
Thailand
Togo
Tokelau
Tonga
Trinidad and Tobago
Tunisia
Turkey
Turkmenistan
Turks and Caicos Islands
Tuvalu
Uganda
Ukraine
United Arab Emirates
United Kingdom
United States
United States Minor Outlying Islands
United States Virgin Islands
Uruguay
Uzbekistan
Vanuatu
Vatican City
Venezuela
Vietnam
Wallis and Futuna
Western Sahara
Yemen
Zambia
Zimbabwe