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

Submitted URL: https://trk.klclick1.com/ls/click?upn=m3oBIj-2FX9SqbQNK8l1LdEEvJ5YCOvjvMHrIqzADhSWOr-2FFrk3OyYOS1noxsiWI4f3j1yoemqTqfrJkn...
Effective URL: https://www.shopkenworth.com/1534276-00-ladies-script-cap?utm_source=Klaviyo&utm_medium=email&utm_campaign=Kenworth%20HOW%233...
Submission: On January 24 via api from US — Scanned from DE

Form analysis 5 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 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/aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbS8xNTM0Mjc2LTAwLWxhZGllcy1zY3JpcHQtY2FwP19reD1IdXREbUFCRzhNY0NjRGJ3QzZsY3VFT2pIVU1YeWh6UTVXS0VjbzU5dGI4JTNELlhmNTVEOCZ1dG1fY2FtcGFpZ249S2Vud29ydGgrSE9XJTIzMytUb3ArTGFkaWVzK0hhdHMrMzE0NTImdXRtX2lkPTAxSEtRVFNYMUdQTVhKOTBNNVFNMTFBRThHJnV0bV9tZWRpdW09ZW1haWwmdXRtX3NvdXJjZT1LbGF2aXlvJnV0bV90ZXJtPUtlbndvcnRoX0hPVzNUb3BMYWRpZXNIYXRzXzAxXzI0/product/20743/

<form data-product-sku="1534276-00"
  action="https://www.shopkenworth.com/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbS8xNTM0Mjc2LTAwLWxhZGllcy1zY3JpcHQtY2FwP19reD1IdXREbUFCRzhNY0NjRGJ3QzZsY3VFT2pIVU1YeWh6UTVXS0VjbzU5dGI4JTNELlhmNTVEOCZ1dG1fY2FtcGFpZ249S2Vud29ydGgrSE9XJTIzMytUb3ArTGFkaWVzK0hhdHMrMzE0NTImdXRtX2lkPTAxSEtRVFNYMUdQTVhKOTBNNVFNMTFBRThHJnV0bV9tZWRpdW09ZW1haWwmdXRtX3NvdXJjZT1LbGF2aXlvJnV0bV90ZXJtPUtlbndvcnRoX0hPVzNUb3BMYWRpZXNIYXRzXzAxXzI0/product/20743/"
  method="post" id="product_addtocart_form" novalidate="novalidate">
  <input type="hidden" name="product" value="20743">
  <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="20743">
  <input name="form_key" type="hidden" value="rtbv7D1fJ2ahX220">
  <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">
          <span>Add to Cart</span>
        </button>
      </div>
    </div>
  </div>
</form>

POST

<form class="amhideprice-form" id="amhideprice-form" action="" method="post" style="display: none;">
  <input name="form_key" type="hidden" value="rtbv7D1fJ2ahX220">
  <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" 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" width="256" height="60" role="presentation" name="a-wc57dl62ehpi" frameborder="0" scrolling="no"
              sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
              src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6Lc4X1YlAAAAACe3_ImFJzZ07rJottCV15iy4DNR&amp;co=aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbTo0NDM.&amp;hl=de&amp;v=QUpyTKFkX5CIV6EF8TFSWEif&amp;theme=light&amp;size=invisible&amp;badge=bottomright&amp;cb=cfo9uriy5tae"></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" width="256" height="60" role="presentation" name="a-x42ptorqtre9" frameborder="0" scrolling="no"
              sandbox="allow-forms allow-popups allow-same-origin allow-scripts allow-top-navigation allow-modals allow-popups-to-escape-sandbox allow-storage-access-by-user-activation"
              src="https://www.google.com/recaptcha/api2/anchor?ar=1&amp;k=6Lc4X1YlAAAAACe3_ImFJzZ07rJottCV15iy4DNR&amp;co=aHR0cHM6Ly93d3cuc2hvcGtlbndvcnRoLmNvbTo0NDM.&amp;hl=de&amp;v=QUpyTKFkX5CIV6EF8TFSWEif&amp;theme=light&amp;size=invisible&amp;badge=bottomright&amp;cb=t6422r2ujvll"></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><iframe style="display: none;"></iframe>
      </div>
      <!-- ko if: (!getIsInvisibleRecaptcha()) --><!-- /ko -->
    </div>
    <!-- /ko -->
    <!-- /ko -->
    <!-- ko if: loginMessage --><!-- /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

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
 * Sign In
 * Create an Account

Tracking Info
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.
 * Home
 * Ladies Script Cap


LADIES SCRIPT CAP

$27.95
In stock
Only 229 left
SKU
1534276-00
- Qty +
Add to Cart

 * Color: Blue/Charcoal
 * Decoration: Embroidered Kenworth Script and Bug logo
 * Material: Chino Twill


DETAILS

Fine-penned script finishes the front of this cap in a swooping scarlet
flourish. Features a soft-structured peak, contrast stitching, two-tone body,
and an adjustable plastic snap closure.
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.
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


Sign In
Forgot Your Password?