www.jennasmith.shop Open in urlscan Pro
172.67.128.223  Public Scan

Submitted URL: http://jennasmith.shop/outlet/men-long-sleeve-jacquard-chevron-jumper-navy-ted-baker-jumpers-knitwear
Effective URL: https://www.jennasmith.shop/outlet/men-long-sleeve-jacquard-chevron-jumper-navy-ted-baker-jumpers-knitwear/
Submission: On November 03 via api from US — Scanned from DE

Form analysis 4 forms found in the DOM

GET https://www.jennasmith.shop/

<form role="search" method="get" class="search-form" action="https://www.jennasmith.shop/">
  <label>
    <span class="screen-reader-text">Search for:</span>
    <input type="search" class="search-field" placeholder="Search …" value="" name="s">
  </label>
  <input type="submit" class="search-submit" value="Search">
  <input type="hidden" name="post_type" value="product">
</form>

GET https://www.jennasmith.shop/

<form role="search" method="get" class="search-form" action="https://www.jennasmith.shop/">
  <label>
    <span class="screen-reader-text">Search for:</span>
    <input type="search" class="search-field" placeholder="Search …" value="" name="s">
  </label>
  <input type="submit" class="search-submit" value="Search">
  <input type="hidden" name="post_type" value="product">
</form>

POST https://www.jennasmith.shop/outlet/men-long-sleeve-jacquard-chevron-jumper-navy-ted-baker-jumpers-knitwear/

<form class="cart" action="https://www.jennasmith.shop/outlet/men-long-sleeve-jacquard-chevron-jumper-navy-ted-baker-jumpers-knitwear/" method="post" enctype="multipart/form-data">
  <div class="custom_options">
    <!-- Product Options Start-->
    <div class="fmecustomgroup">
      <label> Size <span class="required">*</span> :- </label>
      <select type="select" class="fma fmeop fmeinput" name="product_options[size]">
        <option data-price="" value="TED SIZE 1 (XS)"> TED SIZE 1 (XS) </option>
        <option data-price="" value="TED SIZE 2 (S)"> TED SIZE 2 (S) </option>
        <option data-price="" value="TED SIZE 3 (M)"> TED SIZE 3 (M) </option>
        <option data-price="" value="TED SIZE 4 (L)"> TED SIZE 4 (L) </option>
        <option data-price="" value="TED SIZE 5 (XL)"> TED SIZE 5 (XL) </option>
        <option data-price="" value="TED SIZE 6 (2XL)"> TED SIZE 6 (2XL) </option>
        <option data-price="" value="TED SIZE 7 (3XL)"> TED SIZE 7 (3XL) </option>
        <option data-price="" value="TED SIZE 8 (4XL)"> TED SIZE 8 (4XL) </option>
      </select>
    </div>
    <!-- Product Options End-->
  </div>
  <div class="price_total">
    <div id="product_options_total" product-type="simple" product-price="57.65"></div>
  </div>
  <script type="text/javascript">
    jQuery(document).ready(function($) {
      $(this).on('change', 'input:text, select, textarea, input.qty', function() {
        ProductCustomOptions();
      });
      ProductCustomOptions();

      function ProductCustomOptions() {
        var option_total = 0;
        var product_price = $('#product_options_total').attr('product-price');
        var product_total_price = 0;
        var final_total = 0;
        $('.fmeop').each(function() {
          var option_price = 0;
          if ($(this).attr('type') == 'select') {
            option_price = $("option:selected", this).attr('data-price');
          } else if ($(this).attr('type') == 'mselect') {
            var sum = option_price;
            $("option:selected", this).each(function() {
              str = parseFloat($(this).attr('data-price'));
              sum = str + sum;
            });
            option_price = sum;
          } else {
            option_price = $(this).attr('data-price');
          }
          var value_entered = $(this).val();
          if (value_entered != '' || option_price == 0) {
            option_total = parseFloat(option_total) + parseFloat(option_price);
          }
        });
        var qty = $('.qty').val();
        if (option_total > 0 && qty > 0) {
          option_total = parseFloat(option_total * qty);
          var price_form = "left";
          var op_price = '';
          if (price_form == 'left') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              format: "%s%v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'left_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              format: "%s %v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              format: "%v%s"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&euro;",
              format: "%v %s"
            }, "2", ".", ","); // €4.999,99
          }
          if (product_price) {
            product_total_price = parseFloat(product_price * qty);
          }
          final_total = option_total + product_total_price;
          var fi_price = '';
          if (price_form == 'left') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              format: "%s%v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'left_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              format: "%s %v"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              format: "%v%s"
            }, "2", ".", ","); // €4.999,99
          } else if (price_form == 'right_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&euro;",
              format: "%v %s"
            }, "2", ".", ","); // €4.999,99
          }
          html = '';
          html = html + '<div class="tprice"><div class="leftprice">Options Total:</div><div class="rightprice optionprice">' + op_price + '</div></div>';
          if (final_total) {
            html = html + '<div class="tprice"><div class="leftprice">Final Total:</div><div class="rightprice finalprice">' + fi_price + '</div></div>';
          }
          html = html + '</dl>';
          $('#product_options_total').html(html);
        } else {
          $('#product_options_total').html('');
        }
      }
    });
  </script>
  <script>
    var URL = "https://www.jennasmith.shop/wp-content/plugins/fma-product-custom-options/";
  </script>
  <div class="quantity">
    <label class="screen-reader-text" for="quantity_6726d5f085d49">Men Long Sleeve Jacquard Chevron Jumper Navy | Ted Baker Jumpers &amp; Knitwear quantity</label>
    <input type="number" id="quantity_6726d5f085d49" class="input-text qty text" step="1" min="1" max="" name="quantity" value="1" title="Qty" size="4" placeholder="" inputmode="numeric" autocomplete="off">
  </div>
  <button type="submit" name="add-to-cart" value="26770" class="single_add_to_cart_button button alt">Add to cart</button>
</form>

POST https://www.jennasmith.shop/?na=s

<form method="post" action="https://www.jennasmith.shop/?na=s">
  <input type="hidden" name="nr" value="widget"><input type="hidden" name="nlang" value="">
  <div class="tnp-field tnp-field-email"><label for="tnp-1">Email</label>
    <input class="tnp-email" type="email" name="ne" id="tnp-1" value="" required="">
  </div>
  <div class="tnp-field tnp-field-button"><input class="tnp-submit" type="submit" value="Subscribe">
  </div>
</form>

Text Content

Skip to Content
Search for:

Jenna Smith

Jenna Smith

0
 * Men
   * Clothing
     * Suits
     * Jeans
     * Underwear
     * Jumpers & Knitwear
     * Tops
     * Shirts
     * Polo Shirts
     * Trousers & Chinos
     * Coats & Jackets
     * Sweatshirts & Hoodies
     * Pyjamas & Nightwear
     * Shorts
     * Blazers
   * Shoes
     * Formal Shoes
     * Slippers
     * Boots
     * Trainers
   * Bags
     * Document Bags
     * Backpacks
     * Suitcases & Travel Bags
     * Work Bags
     * Satchels
     * Holdalls & Weekend Bags
     * Cross Body Bags
   * Accessories
     * Scarves
     * Belts
     * Wallets & Cardholders
     * Socks
     * Grooming
     * Cufflinks
     * Gloves
     * Aftershave & Fragrance
     * Hats & Caps
     * Ties & Bowties
     * Watches & Jewellery
     * Sunglasses
 * Women
   * Clothing
     * Suits & Co-Ords
     * T-Shirts & Vests
     * Swimwear & Beachwear
     * Skirts
     * Jumpsuits & Playsuits
     * Jeans
     * Tops & Blouses
     * Dresses
     * Trousers & Shorts
     * Jumpers & Cardigans
     * Coats & Jackets
     * Lingerie & Pyjamas
   * Shoes
     * Heels
     * Slippers
     * Boots
     * Trainers
     * Sandals & Sliders
   * Bags
     * Tote Bags
     * Leather Bags
     * Clutch Bags
     * Crossbody Bags
     * Icon Bags & Signature Bags
     * Suitcases & Travel Bags
   * Accessories
     * Tech Accessories
     * Purses & Cardholders
     * Jewellery
     * Belts
     * Gloves
     * Sunglasses
     * Scarves
     * Wash & Makeup Bags
     * Watches
     * Hats
     * Perfumes & Fragrance
 * Kids
   * Girls
     * Girls’ Tops
     * Girls’ Coats & Jackets
     * Girls’ Shoes
     * Girls’ Dresses
     * Girls’ Playsuits & Sets
   * Boys
     * Boys’ Tops
     * Boys’ Jackets & Coats
     * Boys’ Trousers & Shorts
     * Boys’ Sets & Outfits
     * Boys’ Shoes
 * Ted Baker
 * Wishlist
 * My account

Search for:

0
Home Product MenClothingJumpers & Knitwear Men Long Sleeve Jacquard Chevron
Jumper Navy | Ted Baker Jumpers & Knitwear

by Fmeaddons

Sale!
🔍

 1. 
 2. 
 3. 
 4. 
 5. 
 6. 
 7. 
 8. 


MEN LONG SLEEVE JACQUARD CHEVRON JUMPER NAVY | TED BAKER JUMPERS & KNITWEAR

€72,06 €57,65

Size Guides

Women Size


WOMENSWEAR SIZE GUIDE

Ted Size US Bust Waist Hips 0 S 31inch 25inch 35.5inch 1 S 33inch 26inch
36.5inch 2 M 35inch 28inch 38.5inch 3 M 37inch 30inch 40.5inch 4 L 39inch 32inch
42.5inch 5 L 41inch 34inch 44.5inch


WOMEN'S FOOTWEAR

USA Europe UK China Japan 5.5 36 3 215/76 21.5 6.5 37 4 225/78 22.5 7.5 38 5
235/80 23.5 8.5 39 6 245/82 24.5 9.5 40 7 255/84 25.5 10.5 41 8 265/86 26.5


WOMEN'S BELTS SIZE GUIDE

TED SIZE SMALL MEDIUM LARGE STRAP LENGTH (CM) 72 88 90

For off-duty days with a chill in the air, the SESIL jumper has your back.
Featuring a chevron design, this knit makes the perfect piece for layering …

Size * :- TED SIZE 1 (XS) TED SIZE 2 (S) TED SIZE 3 (M) TED SIZE 4 (L) TED SIZE
5 (XL) TED SIZE 6 (2XL) TED SIZE 7 (3XL) TED SIZE 8 (4XL)

Men Long Sleeve Jacquard Chevron Jumper Navy | Ted Baker Jumpers & Knitwear
quantity
Add to cart
Add to wishlist
SKU: G2GNBHTZMIL52144 Categories: Clothing, Jumpers & Knitwear, Men Tags: Navy,
Ted Baker
 * Description
 * Reviews (0)
 * Contact
 * Shipping


DESCRIPTION

For off-duty days with a chill in the air, the SESIL jumper has your back.
Featuring a chevron design, this knit makes the perfect piece for layering over
your favourite T-shirts and pairing with jeans.

   

 * Jumper

   

 * Cotton blend

   

 * Jacquard chevron design

   

 * Long sleeves

   

 * Crew neck

   

 * Tobias is 6'1" / 1.86m and wears Navy in a Ted size 3

   


REVIEWS

There are no reviews yet.

Be the first to review “Men Long Sleeve Jacquard Chevron Jumper Navy | Ted Baker
Jumpers & Knitwear” Cancel reply

You must be logged in to post a review.



Your Name (required)


Your Email (required)


Subject


Your Message







 * 100% Secure Shopping
 * Free Shipping Over € 60
 * Secure Shopping SSL Encryption
 * 20-30 Days Return Guarantee
 * Payment Methods:  




RELATED PRODUCTS

 * Sale!
   
   
   WOMEN WOOL WRAP COAT CAMEL | TED BAKER COATS & JACKETS
   
   €72,06 €57,65 Select options
 * Sale!
   
   
   WOMEN COWL NECK MIDI SLIP DRESS BLACK | TED BAKER DRESSES
   
   €81,07 €56,75 Select options
 * Sale!
   
   
   WOMEN FLORAL VELOUR PYJAMA SET DEEP PURPLE | TED BAKER LINGERIE & PYJAMAS
   
   €45,40 €36,32 Select options
 * Sale!
   
   
   WOMEN SLEEVELESS MOCKABLE DRESS BLACK | TED BAKER DRESSES
   
   €72,06 €57,65 Select options


JENNA SMITH

 * 100% Secure Shopping
 * Free Shipping Over € 60
 * Secure Shopping SSL Encryption
 * 20-30 Days Return Guarantee
 * Payment Methods:  


PRODUCTS

 * Men Slim Fit Linen And Wool Trousers Dark Green | Ted Baker Suits €72,06
   €50,44
 * Men Long Sleeve Satin Stretch Shirt Navy | Ted Baker Shirts €72,96 €51,08


CUSTOMER SERVICE

 * Contact
 * Privacy
 * Shipping
 * Order Tracking
 * My account


NEWSLETTER

Email

Copyright © 2024 jennasmith.shop - All Rights Reserved.