www.eliekelpie.com Open in urlscan Pro
172.67.134.119  Public Scan

Submitted URL: https://eliekelpie.com/hot/kids-gifts-boat-shoes-sperry-little-kids-fairwater-plushwave-jr-boat-shoe-tan
Effective URL: https://www.eliekelpie.com/hot/kids-gifts-boat-shoes-sperry-little-kids-fairwater-plushwave-jr-boat-shoe-tan/
Submission: On November 07 via api from US — Scanned from DE

Form analysis 4 forms found in the DOM

GET https://www.eliekelpie.com/

<form role="search" method="get" class="search-form" action="https://www.eliekelpie.com/">
  <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.eliekelpie.com/

<form role="search" method="get" class="search-form" action="https://www.eliekelpie.com/">
  <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.eliekelpie.com/hot/kids-gifts-boat-shoes-sperry-little-kids-fairwater-plushwave-jr-boat-shoe-tan/

<form class="cart" action="https://www.eliekelpie.com/hot/kids-gifts-boat-shoes-sperry-little-kids-fairwater-plushwave-jr-boat-shoe-tan/" 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="5"> 5 </option>
        <option data-price="" value="5.5"> 5.5 </option>
        <option data-price="" value="6"> 6 </option>
        <option data-price="" value="6.5"> 6.5 </option>
        <option data-price="" value="7"> 7 </option>
        <option data-price="" value="7.5"> 7.5 </option>
        <option data-price="" value="8"> 8 </option>
        <option data-price="" value="8.5"> 8.5 </option>
        <option data-price="" value="9"> 9 </option>
        <option data-price="" value="9.5"> 9.5 </option>
        <option data-price="" value="10"> 10 </option>
      </select>
    </div>
    <!-- Product Options End-->
  </div>
  <div class="price_total">
    <div id="product_options_total" product-type="simple" product-price="42.46"></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: "&#36;",
              format: "%s%v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'left_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              format: "%s %v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              format: "%v%s"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right_space') {
            op_price = accounting.formatMoney(option_total, {
              symbol: "&#36;",
              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: "&#36;",
              format: "%s%v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'left_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              format: "%s %v"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              format: "%v%s"
            }, "2", ",", "."); // €4.999,99
          } else if (price_form == 'right_space') {
            fi_price = accounting.formatMoney(final_total, {
              symbol: "&#36;",
              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.eliekelpie.com/wp-content/plugins/fma-product-custom-options/";
  </script>
  <div class="quantity">
    <label class="screen-reader-text" for="quantity_672c057209432">Kids/Gifts Boat Shoes | Sperry Little Kid's Fairwater PLUSHWAVE™ Jr Boat Shoe Tan quantity</label>
    <input type="number" id="quantity_672c057209432" 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="22426" class="single_add_to_cart_button button alt">Add to cart</button>
</form>

POST https://www.eliekelpie.com/?na=s

<form method="post" action="https://www.eliekelpie.com/?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

CHAT ME

Email Phone



Continue




Kids/Gifts Boat Shoes | Sperry Little Kid's Fairwater PLUSHWAVE™ Jr Boat Shoe
Tan - Elie Kelpie
Skip to Content
Search for:

Elie Kelpie

Elie Kelpie

0
 * New Arrivals
 * Women
   * Loafers & Flats
   * Wedges & Heels
   * Slippers
   * Sandals
   * Sport
   * Rain & Duck Boots
   * Boat Shoes
   * Boots
   * Sneakers
   * Apparel & Accessories
     * Women
     * Apparel
     * Bags
     * Shoe Care & Laces
     * Socks & Liners
   * New & Trending
     * Women
       * Gifts for Her
       * Fall Edit
   * Collections
     * Women
     * Torrent
     * SeaCycled
     * Seaport
     * Saltwater
     * Cloud
 * Men
   * Shoes
   * Sport
   * Rain & Duck Boots
   * Sandals
   * Slippers & Moccasins
   * Boots
   * Sneakers
   * Boat Shoes
   * Loafers & Oxfords
   * Men
   * Socks & Liners
   * Men
     * Gold Cup Luxury
     * Saltwater
     * Handcrafted in Maine
     * Authentic Original
     * Striper II
     * SeaCycled
   * Men
     * Fall Edit
     * Sperry x Rowing Blazers
     * Gifts for Him
 * Kids
   * Shop By Size
   * Baby
   * Little Kid (sizes 1-10)
   * Big Kid (sizes 10.5 & up)
   * Shop Girls
     * Kids
     * Sneakers
     * Sandals
     * Boat Shoes
     * Boots
   * Shop Boys
     * Kids
     * Boots
     * Boat Shoes
     * Sneakers
     * Sandals
   * Kids
     * Washables
     * Dress Shoes
     * Uniform
     * Water Friendly
     * Easy On & Off
     * Rain Boots
     * Gifts for Kids
 * Gender Inclusive
   * Gender Inclusive
   * Gender Inclusive
 * Gifts
   * Boat Shoes
   * Slippers
   * Gifts for Kids
   * Rain & Winter Boots
   * Stocking Stuffers
 * Sperry
 * Wishlist
 * My account

Search for:
0
Home Product Shop BoysKidsBoat Shoes Kids/Gifts Boat Shoes | Sperry Little Kid's
Fairwater PLUSHWAVE™ Jr Boat Shoe Tan

by Fmeaddons

Sale!
🔍

 1. 
 2. 
 3. 
 4. 
 5. 


KIDS/GIFTS BOAT SHOES | SPERRY LITTLE KID'S FAIRWATER PLUSHWAVE™ JR BOAT SHOE
TAN

$49.95 $42.46

Size Guides

Kids Size


KIDS' FOOTWEAR SIZE CHART

Kids' Size Name US Kids' Size Length
(in) Length
(cm) Medium
Width Wide
Width INFANT 1 3 1∕2 in 9 cm 4 3∕4 in - INFANT 2 3 7∕8 in 9.9 cm 5 in - INFANT 3
4 1∕4 in 10.7 cm 5 1∕8 in - INFANT 4 4 5∕8 in 11.6 cm 5 3∕8 in - LITTLE KID 3.5
4 3∕8 in 11.2 cm 5 1∕4 in 5 1∕2 in LITTLE KID 4 4 5∕8 in 11.6 cm 5 3∕8 in 5 1∕2
in LITTLE KID 4.5 4 3∕4 in 12 cm 5 1∕2 in 5 5∕8 in LITTLE KID 5 4 7∕8 in 12.4 cm
5 1∕2 in 5 3∕4 in LITTLE KID 5.5 5 1∕8 in 12.9 cm 5 5∕8 in 5 7∕8 in LITTLE KID 6
5 1∕4 in 13.3 cm 5 3∕4 in 5 7∕8 in LITTLE KID 6.5 5 3∕8 in 13.7 cm 5 7∕8 in 5
7∕8 in LITTLE KID 7 5 5∕8 in 14.1 cm 5 7∕8 in 6 in LITTLE KID 7.5 5 3∕4 in 14.6
cm 6 in 6 1∕8 in LITTLE KID 8 5 7∕8 in 15 cm 6 1∕8 in 6 1∕4 in LITTLE KID 8.5 6
1∕8 in 15.4 cm 6 1∕4 in 6 1∕4 in LITTLE KID 9 6 1∕4 in 15.8 cm 6 1∕4 in 6 3∕8 in
LITTLE KID 9.5 6 3∕8 in 16.3 cm 6 3∕8 in 6 1∕2 in LITTLE KID 10 6 5∕8 in 16.7 cm
6 1∕2 in 6 5∕8 in BIG KID 10.5 6 3∕4 in 17.1 cm 6 5∕8 in 6 5∕8 in BIG KID 11 6
7∕8 in 17.5 cm 6 5∕8 in 6 3∕4 in BIG KID 11.5 7 1∕8 in 18 cm 6 3∕4 in 6 7∕8 in
BIG KID 12 7 1∕4 in 18.4 cm 6 7∕8 in 7 in BIG KID 12.5 7 3∕8 in 18.8 cm 7 1∕8 in
7 in BIG KID 13 7 5∕8 in 19.2 cm 7 1∕4 in 7 3∕8 in BIG KID 13.5 7 3∕4 in 19.7 cm
7 3∕8 in 7 1∕2 in BIG KID 1 7 7∕8 in 20.1 cm 7 1∕2 in 7 5∕8 in BIG KID 1.5 8 1∕8
in 20.5 cm 7 5∕8 in 7 3∕4 in BIG KID 2 8 1∕4 in 20.9 cm 7 3∕4 in 7 7∕8 in BIG
KID 2.5 8 3∕8 in 21.3 cm 7 7∕8 in 8 in BIG KID 3 8 5∕8 in 21.8 cm 8 in 8 1∕8 in
BIG KID 3.5 8 3∕4 in 22.2 cm 8 1∕8 in 8 1∕4 in BIG KID 4 8 7∕8 in 22.6 cm 8 1∕4
in 8 3∕8 in BIG KID 4.5 9 1∕8 in 23.1 cm 8 3∕8 in 8 1∕2 in BIG KID 5 9 1∕4 in
23.5 cm 8 1∕2 in 8 5∕8 in BIG KID 5.5 9 3∕8 in 23.9 cm 8 5∕8 in 8 3∕4 in BIG KID
6 9 5∕8 in 24.3 cm 8 3∕4 in 8 7∕8 in BIG KID 6.5 9 3∕4 in 24.8 cm 8 7∕8 in 9 in
BIG KID 7 9 7∕8 in 25.2 cm 9 in 9 1∕8 in

The Fairwater PLUSHWAVE™ is ready to tackle a day of adventure with light-as-air
PLUSHWAVE™ technology for ultra- cushioning comfort and all day weara…

Size * :- 5 5.5 6 6.5 7 7.5 8 8.5 9 9.5 10

Kids/Gifts Boat Shoes | Sperry Little Kid's Fairwater PLUSHWAVE™ Jr Boat Shoe
Tan quantity
Add to cart
Add to wishlist
SKU: LXOHRWMX8L791661 Categories: Boat Shoes, Boat Shoes, Easy On & Off, Gifts,
Kids, Kids, New & Trending, Shop Boys Tags: Gifts, Kids, Sperry, Tan
 * Description
 * Reviews (0)
 * Contact
 * Shipping


DESCRIPTION

The Fairwater PLUSHWAVE™ is ready to tackle a day of adventure with light-as-air
PLUSHWAVE™ technology for ultra- cushioning comfort and all day wearability.

Light-as-air PLUSHWAVE™ technology for ultra-cushioning comfort and all-day
wearability



Alternative closure with fixed lace for easy on/off



Durable synthetic upper



Padded collar for added comfort



Signature non-marking rubber outsole for greater wet/dry traction



100% recycled poly sock construction


REVIEWS

There are no reviews yet.

Be the first to review “Kids/Gifts Boat Shoes | Sperry Little Kid's Fairwater
PLUSHWAVE™ Jr Boat Shoe Tan” 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 RAIN & DUCK BOOTS | SPERRY ACADIA BOOT OLIVE
   
   $74.98 $56.23 Select options
 * Sale!
   
   
   WOMEN RAIN & DUCK BOOTS | SPERRY ACADIA BOOT TAN
   
   $70.98 $53.23 Select options
 * Sale!
   
   
   WOMEN/GIFTS RAIN & DUCK BOOTS | SPERRY SALTWATER WOOL EMBOSSED DUCK BOOT W/
   THINSULATE™ OAT
   
   $60.98 $45.73 Select options
 * Sale!
   
   
   WOMEN/GIFTS RAIN & DUCK BOOTS | SPERRY SALTWATER WOOL EMBOSSED DUCK BOOT W/
   THINSULATE™ GREY
   
   $64.98 $61.73 Select options


ELIE KELPIE

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


PRODUCTS

 * Kids Boots | Sperry Big Kid's Bowline Storm Junior Boot Black/charcoal $59.99
   $50.99
 * Women/Gifts Boat Shoes | Sperry Starfish 1-Eye Leather Baja Boat Shoe Black
   $59.99 $32.99


CUSTOMER SERVICE

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


NEWSLETTER

Email

Copyright © 2024 eliekelpie.com - All Rights Reserved.