www.jimenarosa.com Open in urlscan Pro
2606:4700:3030::ac43:db1a  Public Scan

Submitted URL: http://www.jimenarosa.com/sale/mens-round-neck-sweater-in-two-tone-white-and-green-wool-golden-goose-knitwear/
Effective URL: https://www.jimenarosa.com/sale/mens-round-neck-sweater-in-two-tone-white-and-green-wool-golden-goose-knitwear/
Submission: On February 25 via api from US — Scanned from US

Form analysis 5 forms found in the DOM

GET https://www.jimenarosa.com/

<form role="search" method="get" class="search-form" action="https://www.jimenarosa.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">
  <span class="suki-search-icon suki-icon" title=""><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
      <path d="M26,46.1a20,20,0,1,1,20-20A20,20,0,0,1,26,46.1ZM63.4,58.5,48.2,43.3a3.67,3.67,0,0,0-2-.8A26.7,26.7,0,0,0,52,26a26,26,0,1,0-9.6,20.2,4.64,4.64,0,0,0,.8,2L58.4,63.4a1.93,1.93,0,0,0,2.8,0l2.1-2.1A1.86,1.86,0,0,0,63.4,58.5Z"></path>
    </svg></span>
</form>

GET https://www.jimenarosa.com/

<form role="search" method="get" class="search-form" action="https://www.jimenarosa.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">
  <span class="suki-search-icon suki-icon" title=""><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
      <path d="M26,46.1a20,20,0,1,1,20-20A20,20,0,0,1,26,46.1ZM63.4,58.5,48.2,43.3a3.67,3.67,0,0,0-2-.8A26.7,26.7,0,0,0,52,26a26,26,0,1,0-9.6,20.2,4.64,4.64,0,0,0,.8,2L58.4,63.4a1.93,1.93,0,0,0,2.8,0l2.1-2.1A1.86,1.86,0,0,0,63.4,58.5Z"></path>
    </svg></span>
</form>

POST

<form class="cart" 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="XXS"> XXS </option>
        <option data-price="" value="XS"> XS </option>
        <option data-price="" value="S"> S </option>
        <option data-price="" value="M"> M </option>
        <option data-price="" value="L"> L </option>
        <option data-price="" value="XL"> XL </option>
        <option data-price="" value="XXL"> XXL </option>
      </select>
    </div>
    <!-- Product Options End-->
  </div>
  <div class="price_total">
    <div id="product_options_total" product-type="simple" product-price="69"></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_space";
          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.jimenarosa.com/wp-content/plugins/fma-product-custom-options/";
  </script>
  <div class="quantity">
    <input type="number" class="input-text qty text" step="1" min="1" max="1083" name="quantity" value="1" title="Qty" size="4" pattern="[0-9]*" inputmode="numeric">
  </div>
  <button type="submit" name="add-to-cart" value="558610" class="single_add_to_cart_button button alt">Add to cart</button>
</form>

POST /sale/mens-round-neck-sweater-in-two-tone-white-and-green-wool-golden-goose-knitwear/#wpcf7-f558940-p558610-o1

<form action="/sale/mens-round-neck-sweater-in-two-tone-white-and-green-wool-golden-goose-knitwear/#wpcf7-f558940-p558610-o1" method="post" class="wpcf7-form" novalidate="novalidate">
  <div style="display: none;">
    <input type="hidden" name="_wpcf7" value="558940">
    <input type="hidden" name="_wpcf7_version" value="4.6.1">
    <input type="hidden" name="_wpcf7_locale" value="en_AU">
    <input type="hidden" name="_wpcf7_unit_tag" value="wpcf7-f558940-p558610-o1">
    <input type="hidden" name="_wpnonce" value="f5f51bec09">
  </div>
  <p><label> Your Name (required)<br>
      <span class="wpcf7-form-control-wrap your-name"><input type="text" name="your-name" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false"></span> </label></p>
  <p><label> Your Email (required)<br>
      <span class="wpcf7-form-control-wrap your-email"><input type="email" name="your-email" value="" size="40" class="wpcf7-form-control wpcf7-text wpcf7-email wpcf7-validates-as-required wpcf7-validates-as-email" aria-required="true"
          aria-invalid="false"></span> </label></p>
  <p><label> Subject<br>
      <span class="wpcf7-form-control-wrap your-subject"><input type="text" name="your-subject" value="" size="40" class="wpcf7-form-control wpcf7-text" aria-invalid="false"></span> </label></p>
  <p><label> Your Message<br>
      <span class="wpcf7-form-control-wrap your-message"><textarea name="your-message" cols="40" rows="10" class="wpcf7-form-control wpcf7-textarea" aria-invalid="false"></textarea></span> </label></p>
  <p><input type="submit" value="Send" class="wpcf7-form-control wpcf7-submit"><span class="ajax-loader"></span></p>
  <div class="wpcf7-response-output wpcf7-display-none"></div>
</form>

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

<form method="post" action="https://www.jimenarosa.com/?na=s" onsubmit="return newsletter_check(this)">
  <input type="hidden" name="nr" value="widget">
  <input type="hidden" name="nl[]" value="0">
  <div class="tnp-field tnp-field-email"><label>Email</label><input class="tnp-email" type="email" name="ne" 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:
 * MensExpand / Collapse
   * ClothingExpand / Collapse
     * T-Shirts
     * Shirts
     * Sweatshirts
     * Coats & Jackets
     * Jeans & Pants
     * Knitwear
     * Blazers
   * AccessoriesExpand / Collapse
     * Belts
     * Jewelry
   * Bags
   * Shoes
 * WomensExpand / Collapse
   * ClothingExpand / Collapse
     * Jeans & Pants
     * T-Shirts
     * Dresses & Jumpsuits
     * Knitwear
     * Coats & Jackets
     * Blazers
     * Sweatshirts
     * Shirts
     * Skirts & Shorts
   * AccessoriesExpand / Collapse
     * Laces
     * Silks & Scarves
     * Socks
     * Jewelry
     * Belts
     * Hats
   * BagsExpand / Collapse
     * Handle Bags
     * Crossbody Bags
   * ShoesExpand / Collapse
     * Shoes & Sandals
     * Boots
 * Golden Goose
 * Wishlist
 * My Account

Jimena Rosa

 * Mens
   * Clothing
     * T-Shirts
     * Shirts
     * Sweatshirts
     * Coats & Jackets
     * Jeans & Pants
     * Knitwear
     * Blazers
   * Accessories
     * Belts
     * Jewelry
   * Bags
   * Shoes
 * Womens
   * Clothing
     * Jeans & Pants
     * T-Shirts
     * Dresses & Jumpsuits
     * Knitwear
     * Coats & Jackets
     * Blazers
     * Sweatshirts
     * Shirts
     * Skirts & Shorts
   * Accessories
     * Laces
     * Silks & Scarves
     * Socks
     * Jewelry
     * Belts
     * Hats
   * Bags
     * Handle Bags
     * Crossbody Bags
   * Shoes
     * Shoes & Sandals
     * Boots
 * Golden Goose
 * Wishlist
 * My Account

Shopping Cart 0

No products in the cart.

Search
Search for:
Jimena Rosa

0
Mobile Menu
Home / Mens / Clothing / Knitwear / Men’s round-neck sweater in two-tone white
and green wool | Golden Goose Knitwear

by Fmeaddons

🔍

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

Sale!
Home / Mens / Clothing / Knitwear / Men’s round-neck sweater in two-tone white
and green wool | Golden Goose Knitwear


MEN’S ROUND-NECK SWEATER IN TWO-TONE WHITE AND GREEN WOOL | GOLDEN GOOSE
KNITWEAR

$ 168.00 $ 69.00

An old-flavored trip that doesn’t revolve around the stops, but the ride itself.
A unique journey of imagination, intimacy, and never-ending discoveries on th…

In stock

Size * :- XXS XS S M L XL XXL


Add to cart
Add to Wishlist
Product added Browse Wishlist
Product already in wishlist Browse Wishlist



SKU: QYN14/NS992896 Categories: Clothing, Knitwear, Mens Tags: Golden Goose,
Knitwear, Mens
 * Description
 * Reviews (0)
 * Shipping
 * Contact


DESCRIPTION

An old-flavored trip that doesn’t revolve around the stops, but the ride itself.
A unique journey of imagination, intimacy, and never-ending discoveries on the
tracks of the Golden Express, reflecting in one collection its warm hues and
romantic patterns. This regular-fit round-neck sweater in white and green wool
features small all-over geometric motifs. The detachable pins on the front add
the finishing touch.
Color: white and green
Detachable pins with University-style designs
Double gold star on the back
Round neck
Long sleeves
Regular fit
Main material: 73% virgin wool, 27% alpaca wool
The model is
183 cm
tall and is wearing a size
M
.


REVIEWS

There are no reviews yet.

Be the first to review “Men’s round-neck sweater in two-tone white and green
wool | Golden Goose Knitwear” Cancel reply

You must be logged in to post a review.


 * 100% Secure Shopping
 * Free Shipping & Return Shipping
 * Secure Shopping SSL Encryption
 * Delivery Within 20-30 Working Days
 * Payment Methods:  

Your Name (required)


Your Email (required)


Subject


Your Message









RELATED PRODUCTS

 * 
   Sale!
   
   
   STAR BAG IN BEIGE SHEARLING WITH SUEDE STAR | GOLDEN GOOSE WOMENS CROSSBODY
   BAGS
   
   $ 174.80 $ 75.00
 * 
   Sale!
   
   
   MILITARY-GREEN LACES WITH CONTRASTING ORANGE ‘LACES’ LETTERING | GOLDEN GOOSE
   WOMENS LACES
   
   $ 99.00 $ 44.00
 * 
   Sale!
   
   
   BLACK TRINIDAD BELT IN WASHED LEATHER WITH STUDS | GOLDEN GOOSE MENS BELTS
   
   $ 169.40 $ 76.00
 * 
   Sale!
   
   
   RING IN OLD GOLD COLOR WITH REGULAR LINKS | GOLDEN GOOSE WOMENS JEWELRY
   
   $ 126.50 $ 54.00




JIMENA ROSA

 * 100% Secure Shopping
 * Free Shipping & Return Shipping
 * Secure Shopping SSL Encryption
 * Delivery Within 20-30 Working Days
 * Payment Methods:  


HELP & SERVICE

 * Contact
 * Privacy Policy
 * Shipping
 * My Account
 * Order Tracking


TOP SELLER

 * Men's chinos in gray melange wool blend | Golden Goose Jeans & Pants $ 210.00
   $ 83.00


NEWSLETTER

Email

Copyright © 2024 jimenarosa.com | All Rights Reserved.