campingmart.ca Open in urlscan Pro
23.227.38.32  Public Scan

URL: https://campingmart.ca/en/products/gouttiere-extensions?variant=36573738991784
Submission: On August 19 via api from US — Scanned from CA

Form analysis 6 forms found in the DOM

GET /en/pages/search-results-page

<form action="/en/pages/search-results-page" method="get" class="search-bar__table-cell search-bar__form" role="search">
  <div class="search-bar__table">
    <div class="search-bar__table-cell search-bar__icon-cell">
      <button type="submit" class="search-bar__icon-button search-bar__submit">
        <span class="fa fa-search" aria-hidden="true"></span>
      </button>
    </div>
    <div class="search-bar__table-cell">
      <input type="hidden" name="type" value="product">
      <input type="search" id="SearchInput" name="q" value="" placeholder="Rechercher votre nouveau produit VR" aria-label="Rechercher votre nouveau produit VR" class="search-bar__input snize-input-style" autocomplete="off">
    </div>
  </div>
</form>

GET /en/pages/search-results-page

<form action="/en/pages/search-results-page" method="get" class="search-bar__table-cell search-bar__form" role="search">
  <div class="search-bar__table">
    <div class="search-bar__table-cell">
      <input type="hidden" name="type" value="product">
      <input type="search" id="SearchInput" name="q" value="" placeholder="Rechercher" aria-label="Rechercher" class="search-bar__input snize-input-style" autocomplete="off">
    </div>
    <div class="search-bar__table-cell search-bar__button-cell">
      <button type="submit" class="search-bar__icon-button search-bar__submit">
        <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
          <path fill-rule="evenodd" clip-rule="evenodd"
            d="M12.9661 7.76283C12.9661 10.6523 10.6237 12.9947 7.73422 12.9947C4.84474 12.9947 2.50236 10.6523 2.50236 7.76283C2.50236 4.87335 4.84474 2.53097 7.73422 2.53097C10.6237 2.53097 12.9661 4.87335 12.9661 7.76283ZM11.8475 13.8245C10.675 14.6216 9.25917 15.0874 7.73452 15.0874C3.68925 15.0874 0.409912 11.8081 0.409912 7.76284C0.409912 3.71757 3.68925 0.438232 7.73452 0.438232C11.7798 0.438232 15.0591 3.71757 15.0591 7.76284C15.0591 9.52585 14.4362 11.1434 13.3985 12.4074L18.9053 17.4552C19.3313 17.8457 19.36 18.5076 18.9696 18.9336C18.5791 19.3596 17.9172 19.3884 17.4912 18.9979L11.8475 13.8245Z"
            fill="white"></path>
        </svg>
      </button>
    </div>
  </div>
</form>

POST /en/cart/add

<form method="post" action="/en/cart/add" id="AddToCartForm" accept-charset="UTF-8" class="product-form" enctype="multipart/form-data"><input type="hidden" name="form_type" value="product"><input type="hidden" name="utf8" value="✓">
  <div class="selector-wrapper-secton   hide " style="display: none;">
    <div class="selector-wrapper" style="display: none;">
      <div class="selector-arrow"><select class="single-option-selector" data-option="option1" id="productSelect-option-0">
          <option value="Default Title">Default Title</option>
        </select></div>
    </div><select name="id" id="productSelect" class=" hide " style="display: none;">
      <option selected="selected" value="36573738991784">Default Title</option>
    </select>
  </div>
  <div class="product-single__quantity ">
    <div class="quantity-box-section">
      <label>Quantity:</label>
      <div class="quantity_width">
        <div class="dec button">-</div>
        <input type="number" id="quantity" name="quantity" value="1" min="1">
        <div class="inc button">+</div>
        <p class="min-qty-alert" style="display:none">Minimum quantity should be 1</p>
      </div>
      <script>
        jQuery(".button").on("click", function() {
          var oldValue = jQuery("#quantity").val(),
            newVal = 1;
          if (jQuery(this).text() == "+") {
            newVal = parseInt(oldValue) + 1;
          } else if (oldValue > 1) {
            newVal = parseInt(oldValue) - 1;
          }
          jQuery("#quantity").val(newVal);
          updatePricing();
        });
        //update price when changing quantity
        function updatePricing() {
          //try pattern one before pattern 2
          var regex = /([0-9]+[.|,][0-9]+[.|,][0-9]+)/g;
          var unitPriceTextMatch = jQuery('.product-single #ProductPrice').text().match(regex);
          if (!unitPriceTextMatch) {
            regex = /([0-9]+[.|,][0-9]+)/g;
            unitPriceTextMatch = jQuery('.product-single #ProductPrice').text().match(regex);
          }
          if (unitPriceTextMatch) {
            var unitPriceText = unitPriceTextMatch[0];
            var unitPrice = unitPriceText.replace(/[.|,]/g, '');
            var quantity = parseInt(jQuery('#quantity').val());
            var totalPrice = unitPrice * quantity;
            var totalPriceText = Shopify.formatMoney(totalPrice, window.money_format);
            regex = /([0-9]+[.|,][0-9]+[.|,][0-9]+)/g;
            if (!totalPriceText.match(regex)) {
              regex = /([0-9]+[.|,][0-9]+)/g;
            }
            totalPriceText = totalPriceText.match(regex)[0];
            var regInput = new RegExp(unitPriceText, "g");
            var totalPriceHtml = jQuery('.product-single #ProductPrice').html().replace(regInput, totalPriceText);
            jQuery('.product-single .total-price span').html(totalPriceHtml);
          }
        }
        jQuery('#quantity').on('change', updatePricing);
        var t = false
        jQuery('input').focus(function() {
          var $this = jQuery(this)
          t = setInterval(function() {
            if (($this.val() < 1) && $this.val().length != 0) {
              if ($this.val() < 1) {
                $this.val(1)
              }
              jQuery('.min-qty-alert').fadeIn(1000, function() {
                jQuery(this).fadeOut(500)
              })
            }
          }, 50)
        })
        jQuery('input').blur(function() {
          if (t != false) {
            window.clearInterval(t)
            t = false;
          }
        })
      </script>
      <div class="total-price">
        <label>Subtotal </label><span>$19.99</span>
      </div>
    </div>
  </div>
  <div class="product-single-button">
    <button type="submit" name="add" id="AddToCart" class="btn">
      <span id="AddToCartText">Add to Cart</span>
    </button>
  </div>
</form>

<form aria-label="Write A Review Form">
  <div class="write-review-wrapper write-form">
    <div class="write-review yotpo-regular-box" id="write-review-tabpanel-main-widget" role="tabpanel">
      <div class="yotpo-header">
        <div>
          <h2 class="y-label yotpo-header-title">ÉCRIRE UN AVIS</h2>
        </div>
        <div class="yotpo-mandatory-explain"> <span class="yotpo-mandatory-mark">*</span> Indique un champ requis </div> <br> <span class="yotpo-mandatory-mark">* </span> <span class="y-label"
          id="write-review-score-46558efa-2887-4a37-9f36-7cd7168bc320">Note: <span class="form-input-error yotpo-hidden" id="yotpo_score_message_46558efa-2887-4a37-9f36-7cd7168bc320"></span></span>
        <div aria-describedby="yotpo_score_message_46558efa-2887-4a37-9f36-7cd7168bc320" aria-labelledby="write-review-score-46558efa-2887-4a37-9f36-7cd7168bc320" role="radiogroup" tabindex="-1"> <span class="stars-wrapper"> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="1" aria-label="score 1" role="radio" tabindex="0" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="2" aria-label="score 2" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="3" aria-label="score 3" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="4" aria-label="score 4" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> <span
              class="yotpo-icon yotpo-icon-empty-star pull-left review-star" data-score="5" aria-label="score 5" role="radio" tabindex="-1" aria-checked="false" aria-required="true"></span> </span> </div>
      </div>
      <div class="write-review-content">
        <div class="form-group">
          <div class="form-element"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_title_46558efa-2887-4a37-9f36-7cd7168bc320"> Titre: <span class="form-input-error yotpo-hidden"
                id="yotpo_input_review_title_error_46558efa-2887-4a37-9f36-7cd7168bc320"></span> </label> <input id="yotpo_input_review_title_46558efa-2887-4a37-9f36-7cd7168bc320" class="y-input" name="review_title" maxlength="150"
              aria-required="true" placeholder="" aria-describedby="yotpo_input_review_title_error_46558efa-2887-4a37-9f36-7cd7168bc320"> </div>
          <div class="form-element"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_content_46558efa-2887-4a37-9f36-7cd7168bc320"> Avis: <span class="form-input-error yotpo-hidden"
                id="yotpo_input_review_content_error_46558efa-2887-4a37-9f36-7cd7168bc320"></span> </label> <textarea id="yotpo_input_review_content_46558efa-2887-4a37-9f36-7cd7168bc320" class="y-input yotpo-text-box" name="review_content"
              aria-required="true" placeholder="" aria-describedby="yotpo_input_review_content_error_46558efa-2887-4a37-9f36-7cd7168bc320"></textarea> </div>
        </div>
      </div>
      <div class="yotpo-footer yotpo-animation-opacity visible" style="display: inherit;">
        <div class="socialize-wrapper">
          <div class="connected">Vous êtes connecté en tant que <span class="username"></span></div>
          <div class="socialize"> <span class="y-label">Connectez-vous avec:</span>
            <div>
              <div class="yotpo-default-button yotpo-icon-btn" data-network="twitter" aria-label="connect with twitter" role="link" tabindex="0"><span class="yotpo-icon yotpo-icon-twitter pull-left"></span></div>
              <div class="yotpo-default-button yotpo-icon-btn" data-network="facebook" aria-label="connect with facebook" role="link" tabindex="0"><span class="yotpo-icon yotpo-icon-facebook pull-left"></span></div>
            </div>
          </div>
          <div class="yotpo-or"> -OU- </div>
        </div>
        <div class="connect-wrapper visible " style="display: inherit;">
          <div class="form-element name-input visible" style="display: inherit;"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_username_46558efa-2887-4a37-9f36-7cd7168bc320">Utilisez votre nom: <span
                class="form-input-error yotpo-hidden" id="yotpo_input_review_username_error_46558efa-2887-4a37-9f36-7cd7168bc320"></span></label> <input id="yotpo_input_review_username_46558efa-2887-4a37-9f36-7cd7168bc320" class="y-input"
              autocomplete="nickname" name="display_name" maxlength="40" aria-required="true" placeholder="" aria-describedby="yotpo_input_review_username_error_46558efa-2887-4a37-9f36-7cd7168bc320"> </div>
          <div class="form-element email-input visible" style="display: inherit;"> <span class="yotpo-mandatory-mark">* </span> <label class="y-label" for="yotpo_input_review_email_46558efa-2887-4a37-9f36-7cd7168bc320">E-mail: <span
                class="form-input-error yotpo-hidden" id="yotpo_input_review_email_error_46558efa-2887-4a37-9f36-7cd7168bc320"></span></label> <input id="yotpo_input_review_email_46558efa-2887-4a37-9f36-7cd7168bc320" class="y-input"
              autocomplete="email" name="email" aria-required="true" placeholder="" aria-describedby="yotpo_input_review_email_error_46558efa-2887-4a37-9f36-7cd7168bc320"> </div>
          <div class="yotpo-clr"></div>
        </div>
      </div>
      <div class="error-box yotpo-hidden">
        <div class="text-wrapper"> <span class="error-text empty yotpo-hidden">Le titre et le corps de l'avis ne peuvent rester vides</span>
          <span class="error-text empty_question yotpo-hidden">La question ne peut pas être vide</span>
          <span class="error-text score yotpo-hidden">Veuillez entrer une évaluation en étoiles pour cet avis</span>
          <span class="error-text display_name_empty yotpo-hidden">Le champ du nom ne peut pas être vide</span>
          <span class="error-text email yotpo-hidden">E-mail invalide</span>
          <span class="error-text user-already-reviewed yotpo-hidden">Votre avis a déjà été soumis.</span>
          <span class="error-text max_length yotpo-hidden">La longueur maximale a été dépassée</span>
          <span class="error-text mandatory_field yotpo-hidden">Veuillez remplir tous les champs obligatoires (*)</span>
          <span class="error-text open_question_answer_length yotpo-hidden">Une ou plusieurs de vos réponses ne répondent pas aux critères requis</span>
        </div>
        <div class="yotpo-icon-btn-small transparent-color-btn"><span class="yotpo-icon yotpo-icon-cross" role="button" tabindex="0" aria-label="close error message"></span></div>
      </div>
      <div class="form-element submit-button"> <span class="form-input-error yotpo-hidden"></span> <input type="button" class="yotpo-default-button primary-color-btn yotpo-submit" aria-disabled="true" data-button-type="submit" value="Publier"> </div>
      <div class="yotpo-preloader-wrapper">
        <div class="yotpo yotpo-pre-loader">
          <span class="yotpo-empty-stars">
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
            <span class="yotpo-icon yotpo-icon-empty-star"></span>
          </span>
          <span class="yotpo-full-stars">
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
            <span class="yotpo-icon yotpo-icon-star"></span>
          </span>
        </div>
      </div>
      <div class="yotpo-clr"></div>
    </div>
  </div>
</form>

<form class="needsclick klaviyo-form klaviyo-form-version-cid_1 kl-private-reset-css-Xuajs1" data-testid="klaviyo-form-XYmjzF" novalidate="" tabindex="-1"
  style="display: flex; flex-direction: row; box-sizing: border-box; width: 100%; overflow: visible; max-width: 600px; margin: 0px auto; border-radius: 2px; border-style: none; border-width: 0px; border-color: rgb(0, 0, 0); background-color: rgba(255, 255, 255, 0); background-repeat: no-repeat; background-position-y: 50%; padding: 10px 5px; flex: 1 1 0%;">
  <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: column; width: 100%; margin: 0px; padding: 0px; justify-content: center;">
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px 6px 10px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" style="width: 100%;">
          <p style="text-align:center;font-size:14px;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;font-weight:400;"><span style="font-size:18px;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;font-weight:400;">KEEP IN
              TOUCH</span></p>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px 6px 10px; position: relative; flex: 1 0 0px;">
        <div class="kl-private-reset-css-Xuajs1 go3176171171" style="width: 100%;">
          <p style="text-align:center;font-size:14px;font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif;font-weight:400;"><span class="ql-font-montserrat"
              style="color:rgb(116, 116, 116);font-size:14px;font-family:Montserrat, Courier, 'Lucida Sans Typewriter', 'Lucida Typewriter', monospace;font-weight:400;">Be informed of all our latest news and receive exclusive offers!</span></p>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 0px 25px 0px 10px; position: relative; flex: 1 0 0px;">
        <div class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-grow: 1; flex-direction: column; align-self: flex-end;"><input id="email_34512055" class="needsclick go1917793270 kl-private-reset-css-Xuajs1" type="email"
            autocomplete="email" name="email" tabindex="0" placeholder="Your Email" aria-label="Your Email" aria-invalid="false" options="[object Object]"
            style="box-sizing: border-box; border-radius: 2px; padding: 0px 0px 0px 16px; height: 38px; text-align: left; color: rgb(0, 0, 0); font-family: Arial, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 16px; font-weight: 400; letter-spacing: 0px; background-color: rgb(255, 255, 255); border: 1px solid rgb(180, 187, 195);">
          <div class="needsclick  kl-private-reset-css-Xuajs1" style="width: 100%; position: relative;"></div>
        </div>
      </div>
    </div>
    <div data-testid="form-row" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; flex-direction: row; align-items: stretch; position: relative;">
      <div component="[object Object]" data-testid="form-component" class="needsclick  kl-private-reset-css-Xuajs1" style="display: flex; justify-content: flex-start; padding: 15px 0px 0px; position: relative; flex: 0 1 auto; margin: 0px auto;">
        <button class="needsclick go279450927 kl-private-reset-css-Xuajs1" type="button" tabindex="0"
          style="background: rgb(248, 152, 19); border-radius: 0px; border-style: none; border-color: rgb(0, 0, 0); border-width: 0px; color: rgb(255, 255, 255); font-family: Montserrat, Courier, &quot;Lucida Sans Typewriter&quot;, &quot;Lucida Typewriter&quot;, monospace; font-size: 16px; font-weight: 400; letter-spacing: 0px; line-height: 1; white-space: normal; padding: 11px 10px; text-align: center; word-break: break-word; align-self: flex-end; cursor: pointer; height: auto;">SUBSCRIBE</button>
      </div>
    </div>
  </div><input type="submit" tabindex="-1" value="Submit" style="display: none;">
</form>

POST /cart/add

<form action="/cart/add" method="post" class="variants">
  <select name="id" style="display:none"></select>
  <div class="qty-section quantity-box">
    <label>Quantity:</label>
    <div class="dec button qtyminus">-</div>
    <input type="number" name="quantity" id="Qty" value="1" class="quantity">
    <div class="inc button qtyplus">+</div>
  </div>
  <div class="total-price">
    <label>Subtotal</label><span class="h5"></span>
  </div>
  <div class="actions">
    <button type="button" class="add-to-cart-btn btn"> Add to Cart </button>
  </div>
</form>

Text Content

 * 1-844-877-8297
 * info@campingmart.com


x



 * Favorites List
 * Blog
 * Contact

Cart
0
Item
0.00

Your cart is currently empty!

Continue shopping

Cart total: $0.00

Check Out View Cart
My Account
 * Log in
 * Create account


 * Shop
 * News
 * Liquidation
 * Gift cards

 * Favorites List
 * Blog
 * Contact



Home › Extension gutter


EXTENSION GUTTER


EXTENSION GUTTER

$19.99
$23.99
0.0 star rating écrire un avis




SKU: 42323

Add to wishlist

View Wishlist



Set of 4 gutter extensions, 2 right and 2 left, easy to install and requires no
tools.


- Reduces black marks by keeping water away from your RV

- Black color

- Also available in White

Default Title
Default Title
Quantity:
-
+

Minimum quantity should be 1

Subtotal $19.99
Add to Cart


PRODUITS SIMILAIRES

 * 
   3-axis sticker level
   $7.99$9.99
   View product
 * 
   Insulator for vent 14 "x 14"
   $21.99$29.99
   View product
 * 
   Deluxe bar for screen door
   $59.99$68.99
   View product
 * 
   Floor ventilation grille
   $19.99$22.99
   View product
 * 
   Window crank
   $6.99$9.99
   View product
 * 
   Camco vinyl molding 25 'x 3/4 "
   $14.99$16.99
   View product
 * 
   8 "support for folding shelf
   $19.99$23.99
   View product
 * 
   4 '' T-shaped doorstop.
   $9.99$18.99
   View product
 * 
   Large ball level for RV
   $68.99$76.99
   View product
 * 
   De-Flapper MAX
   $37.99$43.99
   View product
 * 
   Left latch for mosquito net
   $29.99$35.99
   View product
 * 
   Gas Cylinders - 15 in / 40 lbs - 60 lbs
   $29.99$31.99
   View product

 * 
 * 
 * 


Proposé par



0.0 star rating

écrire un avis

écrire un avis




ÉCRIRE UN AVIS

* Indique un champ requis

* Note:

* Titre:
* Avis:
Vous êtes connecté en tant que
Connectez-vous avec:

-OU-
* Utilisez votre nom:
* E-mail:

Le titre et le corps de l'avis ne peuvent rester vides La question ne peut pas
être vide Veuillez entrer une évaluation en étoiles pour cet avis Le champ du
nom ne peut pas être vide E-mail invalide Votre avis a déjà été soumis. La
longueur maximale a été dépassée Veuillez remplir tous les champs obligatoires
(*) Une ou plusieurs de vos réponses ne répondent pas aux critères requis




Merci d’avoir publié un avis !
Nous apprécions vos commentaires. Partagez votre avis afin que chacun puisse
également en profiter.
partager
partager
partager
Merci d’avoir publié un avis !
Votre avis a été envoyé avec succès et se trouve désormais en attente de
publication par notre équipe.
 * Avis (0)


écrire un avis


Mise à jour des résultats en cours

Évaluateur vérifié

0.0 star rating

19/08/23
Review by Anonymous User



Sur
partager ' Share Review by Anonymous User facebook facebook Share Review by
Anonymous User twitter twitter Share Review by Anonymous User LinkedIn linkedin
Share Review by Anonymous User
19/08/23
Cet avis vous a-t-il été utile ?

0

0


soyez le premier à écrire un avis



NEED HELP?

1-844-877-8297
info@campingmart.ca

FOLLOW US!

 * Facebook
 * Instagram

INFORMATION

 * About
 * Delivery
 * Return and refund
 * Terms of use
 * Privacy Policy

BLOG

 * Recent Articles
 * All items



KEEP IN TOUCH

Be informed of all our latest news and receive exclusive offers!


SUBSCRIBE



 



Price :
Quantity:
-
+
Subtotal
Add to Cart
Loading
Error


Added to cart

translation missing: en.products.wishlist.added_to_wishlist




PRODUCT NAME

View Cart
View Wishlist

en
 * fr
 * en