www.shopkenworth.com Open in urlscan Pro
54.188.59.22  Public Scan

Submitted URL: https://trk.klclick1.com/ls/click?upn=m3oBIj-2FX9SqbQNK8l1LdEEvJ5YCOvjvMHrIqzADhSWMDT6JckWiarvS3oNq35kX9-2B0OOjTU8aZKvfsU...
Effective URL: https://www.shopkenworth.com/1534611-00-wanderlust-5-panel-trucker-cap?utm_source=Klaviyo&utm_medium=email&utm_campaign=Kenwo...
Submission: On January 09 via api from US — Scanned from DE

Form analysis 4 forms found in the DOM

GET https://www.shopkenworth.com/catalogsearch/result/

<form class="form minisearch version-2" id="search_mini_form" action="https://www.shopkenworth.com/catalogsearch/result/" method="get">
  <div class="field search wpx-pos-search">
    <label class="label active" for="search" data-role="minisearch-label">
      <span>Search</span>
    </label>
    <div class="control vertically-control">
      <input id="search" data-mage-init="{&quot;quickSearch&quot;:{
                                    &quot;formSelector&quot;:&quot;#search_mini_form&quot;,
                                    &quot;url&quot;:&quot;https://www.shopkenworth.com/search/ajax/suggest/&quot;,
                                    &quot;destinationSelector&quot;:&quot;#search_autocomplete&quot;,
                                    &quot;template&quot;: &quot;<li class=\&quot;<%- data.row_class %>\&quot; id=\&quot;qs-option-<%- data.index %>\&quot; role=\&quot;option\&quot;><span class=\&quot;qs-option-name\&quot;> <%- data.title %></span><span class=\&quot;amount\&quot;><%- data.num_results %></span></li>&quot;,
                                    &quot;minSearchLength&quot;:&quot;3&quot;}
                               }" type="text" name="q" value="" placeholder="Type at least 3 characters to search entire store..." class="input-text vertically-black" maxlength="128" role="combobox" aria-haspopup="false" aria-expanded="false"
        aria-autocomplete="both" autocomplete="off">
      <div class="actions wpx-pos-search search-visible-md">
        <button type="submit" class="action search" title="Search"></button>
      </div>
      <div role="listbox" aria-labelledby="search" id="searchautocomplete" class="searchautocomplete vertically" style="width: 350px; background: #FFFFFF; color: #000000">
        <div class="separator" id="popular-suggestions" style="background: #F0EFF0; color:#000000">Popular Suggestions</div>
        <div id="search_autocomplete" class="wpx-search-autocomplete" role="group" aria-labelledby="popular-suggestions"></div>
        <div class="container-autocomplete cat-container" role="group" aria-labelledby="categories"></div>
        <div class="container-autocomplete" role="group" aria-labelledby="products">
          <div class="prod-container"></div>
          <div class="more-results">
            <a href="#" onclick="document.getElementById('search_mini_form').submit()" class="advanced_search"></a>
          </div>
        </div>
      </div>
      <script>
        requirejs(['jquery', 'underscore', 'weltpixel_searchautocomplete'], function($, _, searchAutoComplete) {
          $(document).ready(function() {
            var isEnablePopularSuggestions = '1',
              isEnableCategorySearch = '1',
              isEnableAutoComplete = '1',
              previousSearch = '';
            window.minNumberOfCharacters = '3';
            window.baseURL = 'https://www.shopkenworth.com/';
            const selectors = {
              input: '#search',
              results: '#searchautocomplete',
              suggestionsResults: 'search_autocomplete',
              productsResults: 'product-list',
              categoryResults: 'category-list',
              suggestionsOption: '.qs-option-name',
              activeClass: 'is-active',
              productTitle: '.product-title'
            }
            const input = $(selectors.input);
            const suggestions = $('#' + selectors.suggestionsResults);
            const suggestionsOption = selectors.suggestionsOption;
            let isExpanded, results, highlightedOption, productsList, categoryList, suggestionsList, suggestionsListFiltered;
            let currentOption, groups, currentGroup, currentGroupOptions, currentOptionIndex, currentGroupIndex;

            function removeHighlight() {
              const options = results.find('li');
              options.each(function() {
                $(this).removeAttr('aria-selected').removeClass(selectors.activeClass);
              });
            }

            function highlightOption(option) {
              input.attr('aria-activedescendant', $(option).attr('id'));
              $(option).addClass(selectors.activeClass).attr('aria-selected', 'true');
            }

            function highlightFirstOption() {
              const firstOption = suggestionsListFiltered[0];
              highlightOption(firstOption);
            }

            function highlightLastOption() {
              const lastOption = productsList.find('> li:last-of-type');
              highlightOption(lastOption);
            }

            function highlightPreviousOption() {
              removeHighlight();
              if (currentOptionIndex - 1 < 0) {
                if (currentGroupIndex - 1 < 0) {
                  highlightLastOption();
                } else {
                  const previousGroupIndex = currentGroupIndex - 1;
                  highlightOption(groups[previousGroupIndex].querySelector('li:last-of-type'));
                }
              } else {
                const previousOptionIndex = currentOptionIndex - 1;
                highlightOption(currentGroupOptions[previousOptionIndex]);
              }
            }

            function highlightNextOption() {
              removeHighlight();
              if (currentOptionIndex + 1 === currentGroupOptions.length) {
                if (currentGroupIndex + 1 === groups.length) {
                  highlightFirstOption();
                } else {
                  const nextGroupIndex = currentGroupIndex + 1;
                  highlightOption(groups[nextGroupIndex].querySelector('li:first-of-type'));
                }
              } else {
                const nextOptionIndex = currentOptionIndex + 1;
                highlightOption(currentGroupOptions[nextOptionIndex]);
              }
            }

            function collapseResults() {
              results.hide();
              isExpanded = false;
              input.attr('aria-expanded', 'false');
            }
            $('html').on('click', function(event) {
              var targetClass = $(event.target).attr('class'),
                searchClass = 'searchautocomplete';
              if (targetClass != searchClass) $('#' + searchClass).hide();
            })
            if (isEnableAutoComplete || isEnablePopularSuggestions || isEnableCategorySearch) {
              $('.search-autocomplete').remove();
              $(input).on('keyup', _.debounce(function(e) {
                var value = $(this).val();
                if (value == previousSearch && suggestions.is(':visible')) {
                  return;
                }
                previousSearch = value;
                if ((isEnableAutoComplete && value.length >= window.minNumberOfCharacters) && e.keyCode !== 27) {
                  //Start processing, show the Progress!
                  $(".search .control").addClass("loader-ajax");
                  searchAutoComplete.ajaxSearch();
                  input.attr('aria-expanded', 'true');
                  isExpanded = true;
                } else {
                  if (isExpanded && e.keyCode !== 40 && e.keyCode !== 38 && e.keyCode !== 13) {
                    collapseResults();
                  }
                }
              }, 750));
              $(input).on('keyup', function(e) {
                if (e.keyCode === 40 || e.keyCode === 38 || e.keyCode === 13) {
                  results = $(selectors.results);
                  productsList = $("." + selectors.productsResults);
                  suggestionsList = $('#' + selectors.suggestionsResults).find('ul');
                  categoryList = $("." + selectors.categoryResults);
                  // there are empty options in DOM and we don't need to focus them,
                  // so we filter Popular Suggestions and work with correct options only
                  suggestionsListFiltered = suggestionsList.find('li').filter(function() {
                    if ($(this).find(suggestionsOption).text().trim() !== "") {
                      return ($(this));
                    }
                  });
                  currentOption = results.find('li[aria-selected="true"]');
                  groups = results.find(productsList.add(categoryList).add(suggestionsList));
                  currentGroup = currentOption.parent();
                  currentGroupOptions = currentGroup.find('> li');
                  if (currentGroup.parent().attr('id') === selectors.suggestionsResults) {
                    currentGroupOptions = suggestionsListFiltered;
                  }
                  currentOptionIndex = currentGroupOptions.index(currentOption);
                  currentGroupIndex = groups.index(currentGroup);
                }
                if (isExpanded) {
                  switch (e.key) {
                    case 'ArrowDown':
                      highlightedOption = results.find('li[aria-selected="true"]');
                      if (highlightedOption.length) {
                        highlightNextOption();
                      } else {
                        highlightFirstOption();
                      }
                      break;
                    case 'ArrowUp':
                      highlightPreviousOption();
                      break;
                    case 'Enter':
                      highlightedOption = results.find('[aria-selected="true"]');
                      if (highlightedOption.length) {
                        highlightedOption.trigger('click');
                        if (highlightedOption.parent().hasClass(selectors.productsResults)) {
                          highlightedOption.find(selectors.productTitle).get(0).click();
                        }
                        if (highlightedOption.parent().hasClass(selectors.categoryResults)) {
                          highlightedOption.find('a').get(0).click();
                        }
                        collapseResults();
                      }
                      break;
                    case 'Escape':
                      collapseResults();
                      break;
                    default:
                      break;
                  }
                }
              });
            }
          });
        });
      </script>
      <div class="nested">
        <a class="action advanced" href="https://www.shopkenworth.com/catalogsearch/advanced/" data-action="advanced-search">
        Advanced Search    </a>
      </div>
    </div>
  </div>
</form>

POST https://www.shopkenworth.com/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbS8xNTM0NjExLTAwLXdhbmRlcmx1c3QtNS1wYW5lbC10cnVja2VyLWNhcD9fa3g9MkJER2tPZnR3Wk9oOUtQenRPZ25IQ1JINW83aExsSTJFeGhrSWIyejV3QSUzRC5YZjU1RDgmdXRtX2NhbXBhaWduPUtlbndvcnRoK0hPVyUyMzErTWVzaCtIYXRzKzMxMzAyJnV0bV9pZD0wMUhLRFBWVk1NM0NHVkpFVlZWME1XV05LMiZ1dG1fbWVkaXVtPWVtYWlsJnV0bV9zb3VyY2U9S2xhdml5byZ1dG1fdGVybT1LZW53b3J0aF9IT1cxTWVzaEhhdHNfMDFfMjQ~/product/20754/

<form data-product-sku="1534611-00"
  action="https://www.shopkenworth.com/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbS8xNTM0NjExLTAwLXdhbmRlcmx1c3QtNS1wYW5lbC10cnVja2VyLWNhcD9fa3g9MkJER2tPZnR3Wk9oOUtQenRPZ25IQ1JINW83aExsSTJFeGhrSWIyejV3QSUzRC5YZjU1RDgmdXRtX2NhbXBhaWduPUtlbndvcnRoK0hPVyUyMzErTWVzaCtIYXRzKzMxMzAyJnV0bV9pZD0wMUhLRFBWVk1NM0NHVkpFVlZWME1XV05LMiZ1dG1fbWVkaXVtPWVtYWlsJnV0bV9zb3VyY2U9S2xhdml5byZ1dG1fdGVybT1LZW53b3J0aF9IT1cxTWVzaEhhdHNfMDFfMjQ~/product/20754/"
  method="post" id="product_addtocart_form">
  <input type="hidden" name="product" value="20754">
  <input type="hidden" name="selected_configurable_option" value="">
  <input type="hidden" name="related_product" id="related-products-field" value="">
  <input type="hidden" name="item" value="20754">
  <input name="form_key" type="hidden" value="wGw2kAXDg9HLnKOc">
  <div class="box-tocart">
    <div class="fieldset">
      <div id="quick-view-errors-message-box"></div>
      <div class="field qty">
        <div class="qty-wrapper" data-bind="scope: 'qty_change'">
          <button class="qty-button" aria-label="Decrease product quantity" data-bind="click: decreaseQty">-</button>
          <label class="label" for="qty"><span>Qty</span></label>
          <input data-bind="textInput: qty" type="number" name="qty" id="qty" min="0" value="1" title="Qty" class="input-text qty plus-minus-input" data-validate="{required:true,'validate-greater-than-zero':true}"
            data-errors-message-box="#quick-view-errors-message-box" aria-label="Product quantity">
          <button class="qty-button" aria-label="Increase product quantity" data-bind="click: increaseQty">+</button>
        </div>
      </div>
      <div class="actions">
        <button type="submit" title="Add to Cart" class="action primary tocart" id="product-addtocart-button" disabled="">
          <span>Add to Cart</span>
        </button>
      </div>
    </div>
  </div>
  <script type="text/x-magento-init"> {
        "*": {
            "Magento_Ui/js/core/app": {
                "components": {
                    "qty_change": {
                        "component": "WeltPixel_ProductPage/js/changeQty",
                        "qtyInput": "#qty"
                    }
                 }
            }
        }
    }
</script>
  <script type="text/x-magento-init"> {
        "#product_addtocart_form": {
            "Magento_Catalog/js/validate-product": {}
        }
    }
</script>
</form>

POST

<form class="amhideprice-form" id="amhideprice-form" action="" method="post" style="display: none;">
  <input name="form_key" type="hidden" value="">
  <input name="product_id" type="hidden" value="">
  <fieldset class="fieldset">
    <legend class="legend amhideprice-form-ledend">
      <span>Get a Quote for</span>
      <span style="font-weight: bolder;" class="product-name"></span>
    </legend>
    <br>
    <div class="amhideprice-fields-container">
      <div class="field required">
        <label for="name" class="label">
          <span>Customer Name</span>
        </label>
        <div class="control">
          <input type="text" name="name" class="input-text" data-validate="{required:true}">
        </div>
      </div>
      <div class="field required">
        <label for="email" class="label">
          <span>Customer Email</span>
        </label>
        <div class="control">
          <input type="email" name="email" autocomplete="email" value="" class="input-text" data-validate="{required:true, 'validate-email':true}" aria-required="true">
        </div>
      </div>
      <div class="field required">
        <label for="phone" class="label">
          <span>Phone Number</span>
        </label>
        <div class="control">
          <input type="text" name="phone" class="input-text " data-validate="{required:true}">
        </div>
      </div>
      <div class="field">
        <label for="comment" class="label">
          <span>Comment</span>
        </label>
        <div class="control">
          <textarea title="Comment" type="textarea" name="comment" class="input-text" data-validate="{'validate-no-html-tags':true}"></textarea>
        </div>
      </div>
      <div class="actions-toolbar">
        <div class="primary">
          <button type="submit" class="action submit primary" title="Submit">
            <span>Submit</span>
          </button>
        </div>
      </div>
    </div>
  </fieldset>
</form>

POST https://www.shopkenworth.com/newsletter/subscriber/new/

<form action="https://www.shopkenworth.com/newsletter/subscriber/new/" method="post" id="newsletter-footer" data-mage-init="{&quot;validation&quot;: {&quot;errorClass&quot;: &quot;newsletter-error&quot;}}">
  <div class="form-group">
    <input name="email" type="email" id="newsletter-bottom" placeholder="Enter your email address" required="true" class="input-text required-entry validate-email">
    <button class="button newsletter-btn" title="Subscribe" type="submit">
      <span>Sign Up</span>
    </button>
  </div>
</form>

Text Content

Skip to Content
The store will not work correctly when cookies are disabled.

JavaScript seems to be disabled in your browser. For the best experience on our
site, be sure to turn on Javascript in your browser.

 * Compare Products
   

 * 
   
 * Tracking Info
 * Sign In
 * Create an Account

Toggle Nav


Menu
 * Kenworth 100
 * New
 * Hats
 * Men
 * Women
 * Kids
 * Events
 * Sale
 * More...
   * * Best Sellers
     * Garage & Auto
     * Drinkware
     * Home & Gifts
     * Office & Tech
     * Diecast Models
     * Toys
     * Sports & Outdoors
     * PPE
     * TRP
     * PacLease
     * PACCAR Financial
       
     
   

Account

Tracking Info
Search
Popular Suggestions



Advanced Search

# Type at least 3 character to search # Hit enter to search


My Cart




WANDERLUST 5-PANEL TRUCKER CAP

$29.95
In stock
Only 277 left
SKU
1534611-00
- Qty +
Add to Cart

Free-spirited cap depicts a rugged mountainscape highlighted by a retro color
gradient. Features a low-profile, structured peak and an adjustable plastic snap
closure.


DETAILS

 * Color: Black/White
 * Decoration: Screenprinted The World’s Best graphic
 * Material: Chino twill front/Mesh back

Skip to the end of the images gallery

Skip to the beginning of the images gallery
 

Get a Quote for

Customer Name

Customer Email

Phone Number

Comment

Submit

COMPANY

   
 * Contact Us
 * Privacy Policy
 * Terms of Use
   
 * Cookie Settings
   
 * Do Not Sell My Personal Information



CUSTOMER SERVICE

 * My Account
 * Track My Order
 * Shipping
 * Returns
 * FAQs
 * Check Gift Card Balance

CONNECT WITH US

Facebook
Twitter
Instagram


SUBSCRIBE TO OUR NEWSLETTER

Sign Up

By clicking "submit" you agree to receive emails from KENWORTH and accept our
terms of use and privacy and cookie policy.





Copyright 2024 Bensussen Deutsch & Associates, LLC. All rights reserved.