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

Submitted URL: http://www.titan.fitness/
Effective URL: https://www.titan.fitness/
Submission: On May 19 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: '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="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">
                      <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>
                      <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&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" 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/dw877c97d6/images/hi-res/Fitness/401556_04.jpg?sw=261&amp;sh=261" alt="" title="Leg Extension and Curl Machine" 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="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</span>
                
            </a>
                      </div>
                    </div>
                    <div class="price">
                      <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>
                      <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: '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;: 1899.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-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-blank"></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="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">
                      <span>
                        <meta itemprop="priceCurrency" content="USD">
                        <span class="sales">
                          <span class="sr-only">Current 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>
                      </span>
                      <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: 'T2-SERIES-RACK',
                        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: "T2-SERIES-RACK",
                  type: "recommendation"
                });
                /* ]]> */
                // -->
              </script>
              <div class="product" role="group" aria-label="product" data-pid="T2-SERIES-RACK">
                <div class="product-tile">
                  <!-- dwMarker="product" dwContentID="47c6b595196a32473ea787abff" -->
                  <div class="gtmproduct"
                    data-object="{&quot;name&quot;: &quot;T-2 Series Power Rack&quot;, &quot;id&quot;: &quot;T2-SERIES-RACK&quot;, &quot;price&quot;: 419.99, &quot;category&quot;: &quot;Racks/Power Racks/T-2 Series&quot;, &quot;brand&quot;: &quot;Fitness&quot;, &quot;position&quot;: &quot;&quot;, &quot;list&quot;: &quot;Category: Racks/Power Racks/T-2 Series&quot;}">
                  </div>
                  <div class="image-container">
                    <a class="gtm-product-list" href="/racks/power-racks/t-2-series/t-2-series-power-rack/T2-SERIES-RACK.html">
        <img class="tile-image  " src="https://www.titan.fitness/dw/image/v2/BDBZ_PRD/on/demandware.static/-/Sites-masterCatalog_Titan/default/dw493f172a/images/hi-res/Fitness/401836_01.jpg?sw=261&amp;sh=261" alt="" title="T-2 Series Power Rack" 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/dw5b15006f/images/hi-res/Fitness/401836_04.jpg?sw=261&amp;sh=261" alt="" title="T-2 Series Power Rack" 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">Fitness</span>
                    <span class="d-none" itemprop="sku">T2-SERIES-RACK</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="T2-SERIES-RACK;401080;401079;"></div>
                      </div>
                    </div>
                    <div class="pdp-link" itemprop="name">
                      <div class="product-tile-name">
                        <a class="gtm-product-list link" href="/racks/power-racks/t-2-series/t-2-series-power-rack/T2-SERIES-RACK.html" itemprop="url">

                    <span>T-2 Series Power Rack</span>
                
            </a>
                      </div>
                    </div>
                    <div class="price">
                      <span class="range">
                        <span>
                          <meta itemprop="priceCurrency" content="USD">
                          <span class="sales">
                            <span class="sr-only">Current price:</span>
                            <span class="value" itemprop="lowprice" content="399.99">
                              <span class="sup-show">
                                <sup class="dollar-sign">$</sup><span class="int-sale-price">399</span><sup>99</sup>
                              </span>
                              <span class="sup-hide ">$399.99</span>
                            </span>
                          </span>
                        </span>
                        <span> - </span>
                        <span>
                          <meta itemprop="priceCurrency" content="USD">
                          <span class="sales">
                            <span class="sr-only">Current price:</span>
                            <span class="value" itemprop="highprice" content="419.99">
                              <span class="sup-show">
                                <sup class="dollar-sign">$</sup><span class="int-sale-price">419</span><sup>99</sup>
                              </span>
                              <span class="sup-hide ">$419.99</span>
                            </span>
                          </span>
                        </span>
                      </span>
                      <a itemprop="url" tabindex="-1" aria-hidden="true" href="https://www.titan.fitness/racks/power-racks/t-2-series/t-2-series-power-rack/T2-SERIES-RACK.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="null" 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_94864520" 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 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: 20px 0px 10px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" id="rich-text-94864522" style="width: 100%;">
          <p style="font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400;"><span
              style="font-family: neue-haas-grotesk-display, Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 600; color: #ffffff;">Plus, text “TITAN” to 72467 for exclusive offers!</span></p>
          <p style="font-size: 14px; font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400;"><span
              style="font-size: 9px; font-family: neue-haas-grotesk-display, Arial, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 500; color: #ffffff;">By submitting this form, you agree to receive recurring automated promotional and
              personalized marketing messages (including cart reminders) from Titan Fitness. Consent is not a condition of purchase. Msg frequency varies. Msg &amp; data rates may apply. Reply HELP for help and STOP to unsubscribe.
              <a href="https://www.titan.fitness/terms.html" style="color: #ffffff;">View Terms</a> &amp; <a href="https://www.titan.fitness/privacy-policy.html" style="color: #ffffff;">Privacy</a>.</span></p>
        </div>
      </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
Titan Fitness 400883 null

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

Free Shipping Buy Now, Pay Later
Titan Fitness 401556 null

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

Free Shipping Buy Now, Pay Later
Titan Fitness 400698 null

Leg Press Hack Squat Machine
Current price: $1,89999 $1,899.99

Free Shipping Buy Now, Pay Later
Fitness T2-SERIES-RACK null

T-2 Series Power Rack
Current price: $39999 $399.99 - Current price: $41999 $419.99

Free Shipping Buy Now, Pay Later


Back
 
 * Racks
    * 
      Shop All Racks
       * Power Racks
       * Rack Accessories
       * Squat Stands
       * Space Saving Racks
       * Half 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
       * T-3 Half Racks
      
      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
       * X-3 Half Racks
      
      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 - $50 Off Vertical Leg Press Shop Now
 * Benches
    * Shop All Benches
      
      All Benches
    * Flat Benches
      
      Flat Benches
    * Adjustable Benches
      
      Adjustable Benches
    * Specialty Benches
      
      Specialty Benches
   
   ⚡ Flash Deal - $50 Off Vertical Leg Press 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 - $50 Off Vertical Leg Press Shop Now
 * Specialty Machines
    * Functional Trainers
      
      Functional Trainers
    * Upper Body Machines
      
      Upper Body Machines
    * Lower Body Machines
      
      Lower Body Machines
    * Weight Stack Machines
      
      Weight Stack Machines
    * Plate-Loaded Machines
      
      Plate-Loaded Machines
   
   ⚡ Flash Deal - $50 Off Vertical Leg Press 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 - $50 Off Vertical Leg Press 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 - $50 Off Vertical Leg Press Shop Now
 * New
 * Sale
    * Shop All Sale
      
      All Sale
    * Scratch & Dent
      
      Scratch & Dent
    * Weekly Deals
      
      Weekly Deals
   
   ⚡ Flash Deal - $50 Off Vertical Leg Press Shop Now

Log in Or Create Account
Search
0


⚡ Flash Deal - $50 Off Vertical Leg Press Shop Now
Remove Product? ×
Are you sure you want to remove the following product from the cart?



Cancel Yes


STRENGTH KNOWS NO LIMITS

Elevate Your Training with Our Premium Barbells

Shop Barbells


SHOP TOP CATEGORIES

This is a carousel with rotating slides. Use Next and Previous buttons to
navigate, or jump to a slide with the slide dots.


RACKS

Shop Now


BENCHES

Shop Now


WEIGHTS

Shop Now


BARBELLS

Shop Now


DUMBBELLS

Shop Now


GYM MACHINES

Shop Now


STRONG. CONFIDENT. STEADFAST.


UNLEASH YOUR TITAN

Our equipment is for every person seeking to push themselves to be better — to
achieve their personal goals. We’re not about being a status symbol our name
doesn’t define who you are or who you’ll become. We’re about individual
triumphs, no matter who you are. We applaud all victories.


PRICE

We’re here to help you crush your fitness goals without the weighted price tag.


QUALITY

Titan equipment is built to the highest standards to withstand even the toughest
workouts.


FREE SHIPPING

Shipping heavy equipment can be costly, so we eliminate that burden for you.

Learn More


BEST SELLERS

This is a carousel with rotating slides. Use Next and Previous buttons to
navigate, or jump to a slide with the slide dots.

Titan Fitness 400883 null
(149 Reviews)


FUNCTIONAL TRAINER

Current price: $2,49999 $2,499.99

Free Shipping Buy Now, Pay Later
Titan Fitness 400698 null
(97 Reviews)


LEG PRESS HACK SQUAT MACHINE

Current price: $1,89999 $1,899.99

Free Shipping Buy Now, Pay Later
Titan Fitness 430063 null
(528 Reviews)


SAFETY SQUAT OLYMPIC BAR V2

Current price: $29999 $299.99

Free Shipping Buy Now, Pay Later
Titan Fitness 430372 null
(60 Reviews)


230 LB SET ECONOMY BUMPER PLATES

Current price: $41999 $419.99

Free Shipping Buy Now, Pay Later
Sale
Limited Time Offer
Titan Fitness 400573 null
(189 Reviews)


VERTICAL LEG PRESS

Original price: $39999 $399.99 Current price: $34997 $349.97 13% off (Save $50)

Free Shipping Buy Now, Pay Later



Just launched


TWISTLOCK™ PRO BARBELL COLLARS



Get ready for unparalleled performance with our TwistLock™ collars! Engineered
for secure plate locking and seamless transitions between sets, they ensure
stability and even weight distribution during intense workouts. Crafted from
high-quality aluminum with medium volcano knurling and a durable black satin
finish, these collars are your ticket to unstoppable gains!



Shop Now


WHAT PEOPLE ARE SAYING

> We wanted the best-in-class brand that could withstand the impact of intense
> training and tolerate the extreme environment of our races — the high quality
> and toughness of Titan is just what we needed.

- Joe De Sena, Founder & CEO, Spartan

> We chose Titan because their equipment is really top-of-the-line, functionally
> great, and it had the look and professional feel that we want to convey at RFK
> Racing.

- Brad Keslowski, RFK Racing

> Thanks to Titan and their impressive equipment, we are able to grant some of
> the most transformational wishes: those that strengthen the body, while also
> strengthening the soul.

– Kim Elenez, President/CEO of Make-A-Wish North Texas

> Fitness is top priority for us. Even though firefighters are notorious for
> being hard on equipment, Titan products can stand up to the intensity of our
> training.

- Kevin Timmons, Bluff City Combat

> We’re able to get top notch equipment into more hands and no longer fear that
> quality equipment will out price many of our customers. If we want it, Titan
> has it.

- Andrew Lewis, Owner Total Fitness USA

> Titan made it possible to outfit our team gym with quality equipment, that
> will elevate our game, making it a space we’re proud to call ours.

- Brendon Cleave, Arrow McLaren Indycar Team
 * 
 * 
 * 
 * 
 * 
 * 

Over 27,000 5-Star Product Reviews


SHOW OFF YOUR HOME GYM

Mention us @betitanfit for a chance to be featured

Versatility is key. 📸 : @lukewardfitness
Shop Now
betitanfit
9 months ago
Inside Jake’s Home Gym: @jarrieta49’s Favorite Titan Fitness...
Shop Now
betitanfit
7 months ago
375LB BENCH PR LFGGGGG big thank you to...
Shop Now
esim3400
5 months ago
After much research I decided to purchase this...
Shop Now
"Scott B
1 year ago
I bought this safety squat bar as I...
Shop Now
"John D
1 year ago
This rack is robust and high quality I’m...
Shop Now
"Cole S
1 year ago
Shop Now
Jack H
1 year ago
Been Dealing with a couple of bulging and...
Shop Now
"Santiago C
1 year ago
This piece is the highlight of my home...
Shop Now
"Jacob B
1 year ago
This rack is high quality and very sturdy...
Shop Now
"Stephen D
1 year ago
Great workout for upper body I am 64...
Shop Now
"Timmy L
1 year ago
"These racks are amazing My wife and I...
Shop Now
"Darrell F
1 year ago
Absolutely worth the investment great addition to the...
Shop Now
"Andrew P
11 months ago
These are awesome! My deadlift can now officially...
Shop Now
"Brian L
1 year ago
Customer Support If you need some support, we’re happy to help.
Call or Text

To place a new order or for assistance with an existing order call or text us at
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.

➔

Plus, text “TITAN” to 72467 for exclusive offers!

By submitting this form, you agree to receive recurring automated promotional
and personalized marketing messages (including cart reminders) from Titan
Fitness. Consent is not a condition of purchase. Msg frequency varies. Msg &
data rates may apply. Reply HELP for help and STOP to unsubscribe. View Terms &
Privacy.


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
© 2024 Titan Brands. All Rights Reserved.



×