[SG Seller/STOCKS]Gateron Milky Yellow Linear Switches for Custom Mechanical Keyboard CHERRY MX OUTEMU JWKC3DUROCK

(0 reviews)
Estimate Shipping Time: 1 Days

Sold by:
Inhouse product

Price:
$0.29 /1

Quantity:

Total Price:
Refund:
Share:

There have been no reviews for this product yet.

Related products

Product Queries (0)

Login or Registerto submit your questions to seller

Other Questions

No none asked to seller yet

function search(){ var searchKey = $('#search').val(); if(searchKey.length > 0){ $('body').addClass("typed-search-box-shown"); $('.typed-search-box').removeClass('d-none'); $('.search-preloader').removeClass('d-none'); $.post('https://www.vertlcalnet.shop/ajax-search', { _token: AIZ.data.csrf, search:searchKey}, function(data){ if(data == '0'){ // $('.typed-search-box').addClass('d-none'); $('#search-content').html(null); $('.typed-search-box .search-nothing').removeClass('d-none').html('Sorry, nothing found for "'+searchKey+'"'); $('.search-preloader').addClass('d-none'); } else{ $('.typed-search-box .search-nothing').addClass('d-none').html(null); $('#search-content').html(data); $('.search-preloader').addClass('d-none'); } }); } else { $('.typed-search-box').addClass('d-none'); $('body').removeClass("typed-search-box-shown"); } } function updateNavCart(view,count){ $('.cart-count').html(count); $('#cart_items').html(view); } function removeFromCart(key){ $.post('https://www.vertlcalnet.shop/cart/removeFromCart', { _token : AIZ.data.csrf, id : key }, function(data){ updateNavCart(data.nav_cart_view,data.cart_count); $('#cart-summary').html(data.cart_view); AIZ.plugins.notify('success', "Item has been removed from cart"); $('#cart_items_sidenav').html(parseInt($('#cart_items_sidenav').html())-1); }); } function addToCompare(id){ $.post('https://www.vertlcalnet.shop/compare/addToCompare', {_token: AIZ.data.csrf, id:id}, function(data){ $('#compare').html(data); AIZ.plugins.notify('success', "Item has been added to compare list"); $('#compare_items_sidenav').html(parseInt($('#compare_items_sidenav').html())+1); }); } function addToWishList(id){ AIZ.plugins.notify('warning', "Please login first"); } function showAddToCartModal(id){ if(!$('#modal-size').hasClass('modal-lg')){ $('#modal-size').addClass('modal-lg'); } $('#addToCart-modal-body').html(null); $('#addToCart').modal(); $('.c-preloader').show(); $.post('https://www.vertlcalnet.shop/cart/show-cart-modal', {_token: AIZ.data.csrf, id:id}, function(data){ $('.c-preloader').hide(); $('#addToCart-modal-body').html(data); AIZ.plugins.slickCarousel(); AIZ.plugins.zoom(); AIZ.extra.plusMinus(); getVariantPrice(); }); } $('#option-choice-form input').on('change', function(){ getVariantPrice(); }); function getVariantPrice(){ if($('#option-choice-form input[name=quantity]').val() > 0 && checkAddToCartValidity()){ $.ajax({ type:"POST", url: 'https://www.vertlcalnet.shop/product/variant_price', data: $('#option-choice-form').serializeArray(), success: function(data){ $('.product-gallery-thumb .carousel-box').each(function (i) { if($(this).data('variation') && data.variation == $(this).data('variation')){ $('.product-gallery-thumb').slick('slickGoTo', i); } }) $('#option-choice-form #chosen_price_div').removeClass('d-none'); $('#option-choice-form #chosen_price_div #chosen_price').html(data.price); $('#available-quantity').html(data.quantity); $('.input-number').prop('max', data.max_limit); if(parseInt(data.in_stock) == 0 && data.digital == 0){ $('.buy-now').addClass('d-none'); $('.add-to-cart').addClass('d-none'); $('.out-of-stock').removeClass('d-none'); } else{ $('.buy-now').removeClass('d-none'); $('.add-to-cart').removeClass('d-none'); $('.out-of-stock').addClass('d-none'); } AIZ.extra.plusMinus(); } }); } } function checkAddToCartValidity(){ var names = {}; $('#option-choice-form input:radio').each(function() { // find unique names names[$(this).attr('name')] = true; }); var count = 0; $.each(names, function() { // then count them count++; }); if($('#option-choice-form input:radio:checked').length == count){ return true; } return false; } function addToCart(){ if(checkAddToCartValidity()) { $('#addToCart').modal(); $('.c-preloader').show(); $.ajax({ type:"POST", url: 'https://www.vertlcalnet.shop/cart/addtocart', data: $('#option-choice-form').serializeArray(), success: function(data){ $('#addToCart-modal-body').html(null); $('.c-preloader').hide(); $('#modal-size').removeClass('modal-lg'); $('#addToCart-modal-body').html(data.modal_view); AIZ.extra.plusMinus(); AIZ.plugins.slickCarousel(); updateNavCart(data.nav_cart_view,data.cart_count); } }); } else{ AIZ.plugins.notify('warning', "Please choose all the options"); } } function buyNow(){ if(checkAddToCartValidity()) { $('#addToCart-modal-body').html(null); $('#addToCart').modal(); $('.c-preloader').show(); $.ajax({ type:"POST", url: 'https://www.vertlcalnet.shop/cart/addtocart', data: $('#option-choice-form').serializeArray(), success: function(data){ if(data.status == 1){ $('#addToCart-modal-body').html(data.modal_view); updateNavCart(data.nav_cart_view,data.cart_count); window.location.replace("https://www.vertlcalnet.shop/cart"); } else{ $('#addToCart-modal-body').html(null); $('.c-preloader').hide(); $('#modal-size').removeClass('modal-lg'); $('#addToCart-modal-body').html(data.modal_view); } } }); } else{ AIZ.plugins.notify('warning', "Please choose all the options"); } }