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

Submitted URL: https://trk.klclick2.com/ls/click?upn=m3oBIj-2FX9SqbQNK8l1LdEEvJ5YCOvjvMHrIqzADhSWNOSAFlNQPn28sgW02UjhiKsSgesBeWwW6i5jT-2...
Effective URL: https://www.shopkenworth.com/?utm_source=Klaviyo&utm_medium=flow&utm_campaign=Happy%20Birthday%20Email&utm_id=XfTcyJ&_kx=eG5K...
Submission: On August 08 via api from US — Scanned from DE

Form analysis 3 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" 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" disabled=""></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 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/newsletter/subscriber/new/

<form action="https://www.shopkenworth.com/newsletter/subscriber/new/" method="post" id="newsletter-footer" novalidate="novalidate">
  <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>
  <div class="field-recaptcha" id="wpn-pearl-recaptcha-f77ddbc107973f97c243776865706675ebc87a42-container" data-bind="scope:'recaptcha-f77ddbc107973f97c243776865706675ebc87a42'">
    <!-- ko template: getTemplate() -->
    <div data-bind="{
    attr: {
        'id': getReCaptchaId() + '-wrapper'
    },
    'afterRender': renderReCaptcha()
}" id="recaptcha-f77ddbc107973f97c243776865706675ebc87a42-wrapper">
      <div class="g-recaptcha" id="recaptcha-f77ddbc107973f97c243776865706675ebc87a42">
        <div class="grecaptcha-badge" data-style="none" style="width: 256px; height: 60px; position: fixed; visibility: hidden;">
          <div class="grecaptcha-logo"><iframe title="reCAPTCHA"
              src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6Lc4X1YlAAAAACe3_ImFJzZ07rJottCV15iy4DNR&amp;co=aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbTo0NDM.&amp;hl=de&amp;v=pCoGBhjs9s8EhFOHJFe8cqis&amp;theme=light&amp;size=invisible&amp;badge=bottomright&amp;cb=juw3jr3ny9p2"
              width="256" height="60" role="presentation" name="a-7oi4i13t9ger" frameborder="0" scrolling="no"
              sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe></div>
          <div class="grecaptcha-error"></div><textarea id="g-recaptcha-response-1" name="g-recaptcha-response" class="g-recaptcha-response"
            style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
        </div>
      </div>
      <!-- ko if: (!getIsInvisibleRecaptcha()) --><!-- /ko -->
    </div>
    <!-- /ko -->
  </div><input type="text" name="token" style="display: none">
</form>

POST

<form class="form form-login" method="post" data-bind="event: {submit: login }" id="login-form">
  <div class="fieldset login" data-bind="attr: {'data-hasrequired': $t('* Required Fields')}" data-hasrequired="* Required Fields">
    <div class="field email required">
      <label class="label" for="customer-email"><span data-bind="i18n: 'Email Address'">Email Address</span></label>
      <div class="control">
        <input name="username" id="customer-email" type="email" class="input-text" data-mage-init="{&quot;mage/trim-input&quot;:{}}" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true, 'validate-email':true}"
          autocomplete="off">
      </div>
    </div>
    <div class="field password required">
      <label for="pass" class="label"><span data-bind="i18n: 'Password'">Password</span></label>
      <div class="control">
        <input name="password" type="password" class="input-text" id="pass" data-bind="attr: {autocomplete: autocomplete}" data-validate="{required:true}" autocomplete="off">
      </div>
    </div>
    <!-- ko foreach: getRegion('additional-login-form-fields') -->
    <!-- ko template: getTemplate() -->
    <input name="captcha_form_id" type="hidden" data-bind="value: formId,  attr: {'data-scope': dataScope}" value="user_login" data-scope="">
    <!-- ko if: (isRequired() && getIsVisible())--><!-- /ko -->
    <!-- /ko -->
    <!-- ko template: getTemplate() -->
    <div data-bind="{
    attr: {
        'id': getReCaptchaId() + '-wrapper'
    },
    'afterRender': renderReCaptcha()
}" id="recaptcha-popup-login-wrapper">
      <div class="g-recaptcha" id="recaptcha-popup-login">
        <div class="grecaptcha-badge" data-style="none" style="width: 256px; height: 60px; position: fixed; visibility: hidden;">
          <div class="grecaptcha-logo"><iframe title="reCAPTCHA"
              src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6Lc4X1YlAAAAACe3_ImFJzZ07rJottCV15iy4DNR&amp;co=aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbTo0NDM.&amp;hl=de&amp;v=pCoGBhjs9s8EhFOHJFe8cqis&amp;theme=light&amp;size=invisible&amp;badge=bottomright&amp;cb=g8cxpfen4aiv"
              width="256" height="60" role="presentation" name="a-e8lffovngcxz" frameborder="0" scrolling="no"
              sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox"></iframe></div>
          <div class="grecaptcha-error"></div><textarea id="g-recaptcha-response-3" name="g-recaptcha-response" class="g-recaptcha-response"
            style="width: 250px; height: 40px; border: 1px solid rgb(193, 193, 193); margin: 10px 25px; padding: 0px; resize: none; display: none;"></textarea>
        </div>
      </div>
      <!-- ko if: (!getIsInvisibleRecaptcha()) --><!-- /ko -->
    </div>
    <!-- /ko -->
    <!-- /ko -->
    <!-- ko if: loginMessage -->
    <div class="login-modal-text">
      <div data-bind="html: loginMessage">
        <style>
          #html-body [data-pb-style=SGLY9OS] {
            justify-content: flex-start;
            display: flex;
            flex-direction: column;
            background-position: left top;
            background-size: cover;
            background-repeat: no-repeat;
            background-attachment: scroll
          }
        </style>
        <div data-content-type="row" data-appearance="full-width" data-enable-parallax="0" data-parallax-speed="0.5" data-background-images="{}" data-background-type="image" data-video-loop="true" data-video-play-only-visible="true"
          data-video-lazy-load="true" data-video-fallback-src="" data-element="main" data-pb-style="SGLY9OS">
          <div class="row-full-width-inner" data-element="inner">
            <div data-content-type="text" data-appearance="default" data-element="main">
              <div id="O7X4LE3" class="message notice" style="text-align: left;">&nbsp; &nbsp; &nbsp;Welcome to the New KENWORTH! If you already have an account, you may need to
                <a tabindex="0" href="https://www.shopkenworth.com/customer/account/forgotpassword/">reset your password</a> to login.</div>
            </div>
          </div>
        </div>
        <style></style>
      </div>
    </div>
    <!-- /ko -->
    <div class="actions-toolbar">
      <input name="context" type="hidden" value="checkout">
      <div class="primary">
        <button type="submit" class="action action-login secondary" name="send" id="send2">
          <span data-bind="i18n: 'Sign In'">Sign In</span>
        </button>
      </div>
      <div class="secondary">
        <a class="action" data-bind="attr: {href: forgotPasswordUrl}" href="https://www.shopkenworth.com/customer/account/forgotpassword/">
                                <span data-bind="i18n: 'Forgot Your Password?'">Forgot Your Password?</span>
                            </a>
      </div>
    </div>
  </div>
  <input type="text" name="token" style="display: none">
</form>

Text 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.

Your company account is blocked and you cannot place orders. If you have
questions, please contact your company administrator.
 * Compare Products

Skip to Content
 * 
 * Sign In
 * Create an Account

Toggle Nav


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

Account
 * 
 * Sign In
 * Create an Account

Search
Popular Suggestions



Advanced Search

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


My Cart
My Cart


MY CART

Close
Recently added item(s)

You have no items in your shopping cart.
prevnext



KENWORTH 100 GEAR

100 Year Antique Nickel Lapel Pin
$6.95
Add to Cart

100 Year Vintage Air Fresheners - 4 Pack
$12.95
Add to Cart

100 Year 12 oz Stainless Steel Mug
$49.95
Add to Cart

100 Year Yeti 20 Oz Rambler Tumbler
$84.95
Add to Cart

100 Year Bug Baseball Hat
$29.95
Add to Cart

100 Year Sportiqe Olsen Graphic Hoodie
As low as $109.95
Add to Cart

100 Year Antique Nickel Lapel Pin
$6.95
Add to Cart

100 Year Vintage Air Fresheners - 4 Pack
$12.95
Add to Cart

100 Year 12 oz Stainless Steel Mug
$49.95
Add to Cart

100 Year Yeti 20 Oz Rambler Tumbler
$84.95
Add to Cart

100 Year Bug Baseball Hat
$29.95
Add to Cart

100 Year Sportiqe Olsen Graphic Hoodie
As low as $109.95
Add to Cart

100 Year Antique Nickel Lapel Pin
$6.95
Add to Cart

100 Year Vintage Air Fresheners - 4 Pack
$12.95
Add to Cart

prev
next



ATTENTION CANADIAN DEALERS:

x

We are aware of a temporary pricing discrepancy on our web store. Please contact
our sales representatives, Christi Jordan and Lee Schisler, at csmith@bdainc.com
or lschisler@bdainc.com to help place your order with correct pricing. We
apologize for any inconvenience and appreciate your understanding as we work to
resolve this issue promptly!





SHOP KENWORTH 100!

SHOP NOW


SHOP BEST SELLERS!

SHOP NOW

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.



Recently Viewed
No recently views items
Clear All

Copyright 2023 Bensussen Deutsch & Associates, LLC. All rights reserved.
Close





POPUP-AUTHENTICATION POPUP

Close
Checkout as a new customer

Creating an account has many benefits:

 * See order and shipping status
 * Track order history
 * Check out faster

Create an Account
Checkout using your account

Email Address

Password


     Welcome to the New KENWORTH! If you already have an account, you may need
to reset your password to login.
Sign In
Forgot Your Password?