www.ashandemberoutdoors.com Open in urlscan Pro
172.64.154.165  Public Scan

Submitted URL: http://www.ashandemberoutdoors.com/
Effective URL: https://www.ashandemberoutdoors.com/
Submission: On December 07 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="5abc22669b502ebcdf6c27c19c" -->
          <div class="sub-title">Popular Searches</div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Teak Furniture" href="https://www.ashandemberoutdoors.com/collections/grade-a-teak-furniture/">Teak Furniture</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Cauldrons" href="https://www.ashandemberoutdoors.com/collections/outdoor-fire-pits/">Cauldrons</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Open Fire Grills" href="https://www.ashandemberoutdoors.com/collections/open-fire-cooking/">Open Fire Grills</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Shooting Targets" href="https://www.ashandemberoutdoors.com/collections/shooting-targets-stands/">Shooting Targets</a></div>
          </div>
          <div class="items">
            <div class="name"><a class="trending-keyword" data-keyword="Fire Pits" href="https://www.ashandemberoutdoors.com/collections/outdoor-fire-pits/">Fire Pits</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 = '54f57b6076069664c0956e2f45';
              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-TitanAshAndEmber-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-54f57b6076069664c0956e2f45"></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-TitanAshAndEmber-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-W4Lxnm" 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: 0px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; 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_82106161" class="needsclick go296698411 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Enter your email" aria-label="Enter your email" 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(35, 35, 35); font-family: &quot;Maven Pro&quot;, &quot;Lucida Grande&quot;, &quot;Lucida Sans Unicode&quot;, &quot;Lucida Sans&quot;, Geneva, Verdana, sans-serif; font-size: 16px; 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 go3235436382 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(35, 35, 35); font-family: &quot;Maven Pro&quot;, &quot;Lucida Grande&quot;, &quot;Lucida Sans Unicode&quot;, &quot;Lucida Sans&quot;, Geneva, Verdana, 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
   
 * Previously Titan Great Outdoors
 * Buy Now, Pay Later


ASH AND EMBER

Popular Searches
Teak Furniture
Cauldrons
Open Fire Grills
Shooting Targets
Fire Pits



Back
 
 * Outdoor Furniture
    * Shop By Style
       * Grade A Teak Furniture
       * Everwood Furniture
       * Aluminum Furniture
         
   
    * 
      Collections
    * 
      Tables
    * 
      Chairs & Sofas
    * 
      Benches
    * 
      Pool & Bar
   
   ⚡ Deal Of The Week: $150 Off Matterhorn Pyramid Fireplace Shop Now
 * Outdoor Accessories
 * Fire Pits & More
    * Fire Pits
      
      Fire Pits
    * Fire Pit Rings & Liners
      
      Fire Pit Rings & Liners
    * Fire Pit Grates
      
      Fire Pit Grates
    * Fire Pit Accessories
      
      Fire Pit Accessories
   
   ⚡ Deal Of The Week: $150 Off Matterhorn Pyramid Fireplace Shop Now
 * Grills
    * Charcoal Grills
      
      Charcoal Grills
    * Open Fire Cooking
      
      Open Fire Cooking
    * Rotisseries
      
      Rotisseries
    * Smokers
      
      Smokers
    * Grill Accessories
      
      Grill Accessories
   
   ⚡ Deal Of The Week: $150 Off Matterhorn Pyramid Fireplace Shop Now
 * Hunting & Sport
 * Sale
   

Log in Or Create Account
Search
0


⚡ Deal Of The Week: $150 Off Matterhorn Pyramid Fireplace Shop Now
Remove Product? ×
Are you sure you want to remove the following product from the cart?



Cancel Yes
Introducing


THE SAVANNAH COLLECTION



Shop Collection


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.


FURNITURE

Shop Now


FIRE PITS

Shop Now


GRILLS

Shop Now


ROTISSERIES

Shop Now


HUNTING & SPORT

Shop Now




LONG-LASTING PRODUCTS FOR LONG-LASTING MEMORIES

We provide access to premium outdoor products at an affordable price that allows
everyone to unplug, return to the outdoors and spend quality time together. That
way, we all can live a more balanced life, create memories with friends and
families and improve our overall wellbeing.

Shop Now


WHAT MAKES US DIFFERENT?


SIMPLIFIED LUXURY

Through a combination of premium quality products, affordable prices, and
superior customer service, our commitment to our customers results in simplified
luxury — giving you room to relax, breathe, and focus on enjoying time
outdoors. 


LASTING MEMORIES

We make long-lasting products for long-lasting memories. A real high-quality
purchase made today will stand the test of time so that your family can pass it
down for generations to come.


STYLIZED SPACES

Your home is a reflection of you — completely unique in every way possible. To
reflect your individual tastes and desires, we provide a wide range of products
designed to fit the space you need, how you need it. 


GRADE A TEAK






When it comes to your home we believe that quality teak furniture and value for
money go hand in hand. Our teak furniture is beautifully crafted by experienced
artisans using only the finest Grade A premium teak wood, taken from the
heartwood of the tree. Our collection has everything you need to transform your
outdoor space into a relaxing oasis that can also withstand the test of time.



Shop Now


SHOP OUR 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.

Sale
Limited Time Offer
Titan Outdoors 899604 null null



ONYX GRADE A TEAK ARMCHAIR

Original price: $89999 $899.99 Current price: $74997 $749.97 17% off (Save $150)

Free Shipping Buy Now, Pay Later
Sale
Limited Time Offer
Titan Outdoors 899605 null null



ONYX GRADE A TEAK SOFA

Original price: $1,99999 $1,999.99 Current price: $1,79997 $1,799.97 10% off
(Save $200)

Free Shipping Buy Now, Pay Later
Titan Outdoors 899603 null null
(1 Review)


ONYX GRADE A TEAK ADIRONDACK CHAIR

Current price: $34999 $349.99

Free Shipping Buy Now, Pay Later
Titan Outdoors 400873 null null
(2 Reviews)


42" CAULDRON FIRE PIT BOWL WITH GRATE AND CHAIN

Current price: $80999 $809.99

Free Shipping Buy Now, Pay Later
Titan Outdoors 899451 null null
(2 Reviews)


18" KAMADO GRILL KIT

Current price: $99999 $999.99

Free Shipping Buy Now, Pay Later
Sale
Limited Time Offer
Titan Outdoors 899466 null null
(1 Review)


42" HEMISPHERE FIRE PIT

Original price: $69999 $699.99 Current price: $61797 $617.97 12% off (Save $82)

Free Shipping Buy Now, Pay Later
Titan Outdoors 899458 null null
(2 Reviews)


SAVANNAH GRADE A TEAK ADIRONDACK CHAIR

Current price: $29999 $299.99

Out of Stock
Free Shipping Buy Now, Pay Later
Titan Outdoors 899756 null null
(6 Reviews)


LIVE FIRE SANTA MARIA GRILL

Current price: $1,49999 $1,499.99

Free Shipping Buy Now, Pay Later


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

To place a new order or for help with existing one, call 888-794-1455.

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 Us
 * Titan Great Outdoors
 * Careers
 * Affiliate Program
 * Financing
 * New Product Request

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

Account
 * Sign In
 * Create an Account


US

Terms Of UsePrivacy NoticeSite Map
© 2023 Ash & Ember. All Rights Reserved.


×