It looks like this is a web page, not a feed. I looked for a feed associated with this page, but couldn't find one. Please enter the address of your feed to validate.

Source: https://laptopparts.ca

  1. <!doctype html>
  2. <html class="no-js no-touch" lang="en">
  3.  <head>
  4.    <!-- Google tag (gtag.js) -->
  5.    <script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
  6.    <script>
  7.      window.dataLayer = window.dataLayer || [];
  8.      function gtag(){dataLayer.push(arguments);}
  9.      gtag('js', new Date());
  10.  
  11.      gtag('config', 'AW-977549716');
  12.    </script>
  13.    <!-- Google Tag Manager -->
  14.    <script>
  15.      (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  16.      new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  17.      j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  18.      'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  19.      })(window,document,'script','dataLayer','GTM-WDHHF23');
  20.    </script>
  21.    <!-- End Google Tag Manager -->
  22.    <script>  
  23.  /**
  24.  * Author: shipon islam
  25.  * Version: 1.1.0
  26.  * Last Update: 17 Sep 2023
  27.  */
  28.  
  29.  (function() {
  30.      class GTM_DataLayer {
  31.        constructor() {
  32.          window.dataLayer = window.dataLayer || [];
  33.          this.formattedItemId = true;
  34.  
  35.          this.miniCartButtonSelector = [
  36.            // 'a[href="/cart"]',
  37.          ];
  38.  
  39.          this.beginCheckoutbuttons = [
  40.            'button[name="checkout"]',
  41.            '.additional-checkout-buttons',
  42.          ];
  43.  
  44.          this.shopifyDeirectPaymentButtonLink = [
  45.            '.shopify-payment-button'
  46.          ]
  47.  
  48.          this.isAjaxCartIncrementDecrement = true;
  49.  
  50.          this.addToWishListSelectors = {
  51.            'addWishListIcon': '',
  52.            'gridItemSelector': '',
  53.            'productLinkSelector': ''
  54.          }
  55.  
  56.          this.quickViewSelector = {
  57.            'quickViewElement': '',
  58.            'gridItemSelector': '',
  59.            'productLinkSelector': ''
  60.          }
  61.          this.cart = {"note":null,"attributes":{},"original_total_price":0,"total_price":0,"total_discount":0,"total_weight":0.0,"item_count":0,"items":[],"requires_shipping":false,"currency":"CAD","items_subtotal_price":0,"cart_level_discount_applications":[],"checkout_charge_amount":0}
  62.          this.countryCode = "CA";
  63.          this.collectData();          
  64.        }
  65.  
  66.        updateCart() {
  67.          fetch("/cart.js")
  68.          .then((response) => response.json())
  69.          .then((data) => {
  70.            this.cart = data;
  71.          });
  72.        }
  73.  
  74.        collectData() {
  75.            this.customerData();
  76.            this.ajaxRequestData();
  77.            this.miniCartData();
  78.            this.beginCheckoutData();
  79.  
  80.            
  81.  
  82.            
  83.  
  84.            
  85.            
  86.            this.addToWishListData();
  87.            this.quickViewData();
  88.            this.newsletterSignupData();
  89.        }
  90.  
  91.        //logged in customer data
  92.        customerData() {
  93.            const currentUser = {};
  94.            
  95.  
  96.            window.dataLayer = window.dataLayer || [];
  97.            dataLayer.push({
  98.              customer: currentUser
  99.            })
  100.        }
  101.  
  102.        // shipon_add_to_cart, shipon_remove_from_cart
  103.        ajaxRequestData() {
  104.          const self = this;
  105.          let originalFetch = window.fetch;
  106.          
  107.          window.fetch = function () {
  108.            return originalFetch.apply(this, arguments).then((response) => {
  109.              if (response.ok) {
  110.                let cloneResponse = response.clone();
  111.                // add to cart
  112.                if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
  113.                  cloneResponse.text().then((text) => {
  114.                    let item = JSON.parse(text);
  115.                    self.singleCartItemDataLayer('shipon_add_to_cart', item);
  116.                    self.updateCart();
  117.                  });
  118.                }else if(arguments[0].includes("/cart/change")) {
  119.                   cloneResponse.text().then((text) => {
  120.                    let newCart = JSON.parse(text);
  121.                    let newCartItems = newCart.items;
  122.                    let oldCartItems = self.cart.items;
  123.  
  124.                    for(let i = 0; i < oldCartItems.length; i++) {
  125.                      let item = oldCartItems[i];
  126.                      let newItem = newCartItems.find(newItems => newItems.id === item.id);
  127.  
  128.  
  129.                      if(newItem) {
  130.  
  131.                        if(newItem.quantity > item.quantity) {
  132.                          // cart item increment
  133.                          let quantity = (newItem.quantity - item.quantity);
  134.                          let updatedItem = {...item, quantity}
  135.                          self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
  136.                          self.updateCart();
  137.  
  138.                        }else if(newItem.quantity < item.quantity) {
  139.                          // cart item decrement
  140.                          let quantity = (item.quantity - newItem.quantity);
  141.                          let updatedItem = {...item, quantity}
  142.                          self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
  143.                          self.updateCart();
  144.                        }
  145.                        
  146.  
  147.                      }else {
  148.                        self.singleCartItemDataLayer('shipon_remove_from_cart', item);
  149.                        self.updateCart();
  150.                      }
  151.                    }
  152.                  });
  153.                }
  154.              }
  155.              return response;
  156.            });
  157.          }
  158.        }
  159.  
  160.        // shipon_view_cart
  161.        miniCartData() {
  162.          if(this.miniCartButtonSelector.length) {
  163.            let self = this;
  164.            this.miniCartButtonSelector.forEach((selector) => {
  165.              let miniCartButton = document.querySelector(selector);
  166.              if(miniCartButton) {
  167.                miniCartButton.addEventListener('click', () => {
  168.                  self.cartItemsDataLayer('shipon_view_cart', self.cart);
  169.                });
  170.              }
  171.            });
  172.          }
  173.        }
  174.  
  175.        // shipon_begin_checkout
  176.        beginCheckoutData() {
  177.          let self = this;
  178.          document.addEventListener('click', () => {
  179.            let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
  180.            if(targetElement) {
  181.              self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
  182.            }
  183.          });
  184.        }
  185.  
  186.        // shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
  187.        viewCartPageData() {
  188.          
  189.          this.cartItemsDataLayer('shipon_view_cart', this.cart);
  190.  
  191.          //if cart quantity chagne reload page
  192.          if(!this.isAjaxCartIncrementDecrement) {
  193.            const self = this;
  194.            document.addEventListener('pointerdown', (event) => {
  195.              const target = event.target.closest('a[href*="/cart/change?"]');
  196.              if(target) {
  197.                const linkUrl = target.getAttribute('href');
  198.                const queryString = linkUrl.split("?")[1];
  199.                const urlParams = new URLSearchParams(queryString);
  200.                const newQuantity = urlParams.get("quantity");
  201.                const line = urlParams.get("line");
  202.                const cart_id = urlParams.get("id");
  203.        
  204.                
  205.                if(newQuantity && (line || cart_id)) {
  206.                  let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
  207.        
  208.                  let event = 'shipon_add_to_cart';
  209.                  if(newQuantity < item.quantity) {
  210.                    event = 'shipon_remove_from_cart';
  211.                  }
  212.        
  213.                  let quantity = Math.abs(newQuantity - item.quantity);
  214.                  item['quantity'] = quantity;
  215.        
  216.                  self.singleCartItemDataLayer(event, item);
  217.                }
  218.              }
  219.            });
  220.          }
  221.        }
  222.  
  223.        productSinglePage() {
  224.        
  225.        }
  226.  
  227.        collectionsPageData() {
  228.          var ecommerce = {
  229.            'items': [
  230.              
  231.              ]
  232.          };
  233.  
  234.          ecommerce['item_list_id'] = null
  235.          ecommerce['item_list_name'] = null
  236.  
  237.          this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
  238.        }
  239.        
  240.        
  241.        // add to wishlist
  242.        addToWishListData() {
  243.          if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
  244.            const self = this;
  245.            document.addEventListener('pointerdown', (event) => {
  246.              let target = event.target;
  247.              
  248.              if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
  249.                let pageULR = window.location.href.replace(/\?.+/, '');
  250.                let requestURL = undefined;
  251.          
  252.                if(/\/products\/[^/]+$/.test(pageULR)) {
  253.                  requestURL = pageULR;
  254.                } else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
  255.                  let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
  256.                  if(itemElement) {
  257.                    let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
  258.                    if(linkElement) {
  259.                      let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  260.                      if(link && /\/products\/[^/]+$/.test(link)) {
  261.                        requestURL = link;
  262.                      }
  263.                    }
  264.                  }
  265.                }
  266.  
  267.                if(requestURL) {
  268.                  fetch(requestURL + '.json')
  269.                    .then(res => res.json())
  270.                    .then(result => {
  271.                      let data = result.product;                    
  272.                      if(data) {
  273.                        let dataLayerData = {
  274.                         product_id: data.id,
  275.                            variant_id: data.variants[0].id,
  276.                            product_title: data.title,
  277.                         quantity: 1,
  278.                         final_price: parseFloat(data.variants[0].price) * 100,
  279.                         total_discount: 0,
  280.                         product_type: data.product_type,
  281.                         vendor: data.vendor,
  282.                         variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  283.                         sku: data.variants[0].sku,
  284.                        }
  285.  
  286.                        self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
  287.                      }
  288.                    });
  289.                }
  290.              }
  291.            });
  292.          }
  293.        }
  294.  
  295.        quickViewData() {
  296.          if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
  297.            const self = this;
  298.            document.addEventListener('pointerdown', (event) => {
  299.              let target = event.target;
  300.              if(target.closest(self.quickViewSelector.quickViewElement)) {
  301.                let requestURL = undefined;
  302.                let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
  303.                
  304.                if(itemElement) {
  305.                  let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
  306.                  if(linkElement) {
  307.                    let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
  308.                    if(link && /\/products\/[^/]+$/.test(link)) {
  309.                      requestURL = link;
  310.                    }
  311.                  }
  312.                }  
  313.                
  314.                if(requestURL) {
  315.                    fetch(requestURL + '.json')
  316.                      .then(res => res.json())
  317.                      .then(result => {
  318.                        let data = result.product;                    
  319.                        if(data) {
  320.                          let dataLayerData = {
  321.                           product_id: data.id,
  322.                            variant_id: data.variants[0].id,
  323.                            product_title: data.title,
  324.                           quantity: 1,
  325.                           final_price: parseFloat(data.variants[0].price) * 100,
  326.                           total_discount: 0,
  327.                           product_type: data.product_type,
  328.                           vendor: data.vendor,
  329.                           variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
  330.                           sku: data.variants[0].sku,
  331.                          }
  332.  
  333.                          self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
  334.                          self.quickViewVariants = data.variants;
  335.                          self.quickViewedItem = dataLayerData;
  336.                        }
  337.                      });
  338.                  }
  339.              }
  340.            });
  341.  
  342.            
  343.              if(this.shopifyDeirectPaymentButtonLink.length) {
  344.                let self = this;
  345.                document.addEventListener('pointerdown', (event) => {
  346.                  let target = event.target;
  347.                  let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
  348.                  
  349.                  if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
  350.  
  351.                    let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
  352.                    if(checkoutForm) {
  353.                        let quantity = 1;
  354.                        let varientInput = checkoutForm.querySelector('input[name="id"]');
  355.                        let quantitySelector = checkoutForm.getAttribute('id');
  356.  
  357.                        if(quantitySelector) {
  358.                          let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
  359.                          if(quentityInput) {
  360.                              quantity = +quentityInput.value;
  361.                          }
  362.                        }
  363.  
  364.                        if(varientInput) {
  365.                            let variant_id = parseInt(varientInput.value);
  366.  
  367.                            if(variant_id) {
  368.                                const variant = self.quickViewVariants.find(item => item.id === +variant_id);
  369.                                if(variant && self.quickViewedItem) {
  370.                                    self.quickViewedItem['variant_id'] = variant_id;
  371.                                    self.quickViewedItem['variant_title'] = variant.title;
  372.                                    self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
  373.                                    self.quickViewedItem['quantity'] = quantity;
  374.    
  375.                                    self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
  376.                                    self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
  377.                                }
  378.                            }
  379.                        }
  380.                    }
  381.  
  382.                  }
  383.                });
  384.            }
  385.            
  386.          }
  387.        }
  388.  
  389.        // single item add in dataLyaer
  390.        singleCartItemDataLayer(event, item) {
  391.          dataLayer.push({ "ecommerce": null });
  392.          const dataLayerData = {
  393.            "event": event,
  394.            "ecommerce": {
  395.              "currency": this.cart.currency,
  396.              "value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
  397.              "items": [{
  398.                  "item_id": this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
  399.                  "variant_id": item.variant_id.toString(),
  400.                  "item_name": item.product_title,
  401.                  "quantity": item.quantity,
  402.                  "price": +((item.final_price / 100).toFixed(2)),
  403.                  "discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  404.              }]
  405.            }
  406.          }
  407.  
  408.          if(item.product_type) {
  409.            dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
  410.          }
  411.  
  412.          if(item.vendor) {
  413.            dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
  414.          }
  415.  
  416.          if(item.variant_title && item.variant_title !== 'Default Title') {
  417.            dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
  418.          }
  419.  
  420.          if(item.sku) {
  421.            dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
  422.          }
  423.  
  424.          if(item.item_list_id) {
  425.            dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
  426.          }
  427.          
  428.          if(item.item_list_name) {
  429.            dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
  430.          }
  431.          
  432.          dataLayer.push(dataLayerData);
  433.        };
  434.  
  435.        // multiple items add in dataLayer
  436.        cartItemsDataLayer(event, cart) {
  437.          dataLayer.push({ 'ecommerce': null });
  438.          const dataLayerData = {
  439.            'event': event,
  440.            'ecommerce': {
  441.               'currency': this.cart.currency,
  442.               'items': cart.items.map((item, index) => {
  443.                 const itemDataLayerData = {
  444.                    'index': index,
  445.                    'item_id': this.formattedItemId  ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
  446.                    'variant_id': item.variant_id.toString(),
  447.                    'item_name': item.product_title,
  448.                    'quantity': item.quantity,
  449.                    'price': +((item.final_price / 100).toFixed(2)),
  450.                    'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
  451.                }
  452.  
  453.                if(item.product_type) {
  454.                  itemDataLayerData['item_category'] = item.product_type;
  455.                }
  456.                
  457.                 if(item.vendor) {
  458.                  itemDataLayerData['item_brand'] = item.vendor;
  459.                }
  460.  
  461.                                
  462.                if(item.variant_title && item.variant_title !== 'Default Title') {
  463.                  itemDataLayerData['item_variant'] = item.variant_title;
  464.                }
  465.              
  466.                if(item.sku) {
  467.                  itemDataLayerData['sku'] = item.sku;
  468.                }
  469.  
  470.                if(item.item_list_name) {
  471.                  itemDataLayerData['item_list_name'] = item.item_list_name;
  472.                }
  473.  
  474.                if(item.item_list_id) {
  475.                  itemDataLayerData['item_list_id'] = item.item_list_id;
  476.                }
  477.  
  478.                return itemDataLayerData;
  479.              })
  480.            }
  481.          }
  482.  
  483.          if(cart.total_price) {
  484.            dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
  485.          }
  486.          
  487.          if(cart.item_list_id) {
  488.            dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
  489.          }
  490.          
  491.          if(cart.item_list_name) {
  492.            dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
  493.          }
  494.          
  495.          dataLayer.push(dataLayerData);
  496.        }
  497.  
  498.        
  499.        // newsletters signup
  500.        newsletterSignupData() {
  501.        document.addEventListener('click', function(event) {
  502.          let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
  503.          let targetForm = event.target.closest('form[action^="/contact"]');
  504.          if(target && targetForm) {
  505.            let email = targetForm.querySelector('input[type="email"]').value;
  506.            let formType = targetForm.querySelector('input[name="contact[tags]"]');
  507.            if(formType && formType.value === 'newsletter') {
  508.              let form_location = window.location.href;
  509.              let form_id = targetForm.getAttribute('id');
  510.              let form_classes = targetForm.getAttribute('class');
  511.        
  512.              dataLayer.push({
  513.                event: 'newsletter_signup',
  514.                email: email,
  515.                form_location,
  516.                form_id,
  517.                form_classes
  518.              });
  519.            }
  520.          }
  521.        });
  522.      }
  523.      }
  524.      
  525.  
  526.      document.addEventListener('DOMContentLoaded', function() {
  527.        try{
  528.          new GTM_DataLayer();
  529.        }catch(error) {
  530.          console.log(error);
  531.        }
  532.      });
  533.    
  534.  })();
  535. </script>
  536.  
  537.  
  538.  
  539.    <script>
  540.      window.Store = window.Store || {};
  541.      window.Store.id = 11386172;
  542.    </script>
  543.    <meta charset="utf-8">
  544.    <meta http-equiv="x-ua-compatible" content="IE=edge">
  545.  
  546.    <link rel="preconnect" href="https://cdn.shopify.com">
  547.    <link rel="preconnect" href="https://fonts.shopifycdn.com">
  548.    <link rel="preconnect" href="https://v.shopify.com">
  549.    <link rel="preconnect" href="https://cdn.shopifycloud.com">
  550.  
  551.    <title>Original Laptop &amp; Tablet Parts in Canada — LaptopParts.ca</title>
  552.  
  553.    
  554.      <meta name="description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  555.    
  556.  
  557.    
  558.  <link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
  559.  
  560.  
  561.    
  562.      <link rel="canonical" href="https://laptopparts.ca/">
  563.    
  564.  
  565.    <meta name="viewport" content="width=device-width">
  566.  
  567.    
  568.    
  569.  
  570.  
  571.  
  572.  
  573.  
  574.  
  575.  
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583.  
  584. <meta property="og:site_name" content="LaptopParts.ca">
  585. <meta property="og:url" content="https://laptopparts.ca/">
  586. <meta property="og:title" content="Original Laptop &amp; Tablet Parts in Canada">
  587. <meta property="og:type" content="website">
  588. <meta property="og:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  589.  
  590.  
  591.  
  592.  
  593.    
  594.    
  595.    
  596.  
  597.    
  598.    
  599.    <meta
  600.      property="og:image"
  601.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  602.    />
  603.    <meta
  604.      property="og:image:secure_url"
  605.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
  606.    />
  607.    <meta property="og:image:width" content="2540" />
  608.    <meta property="og:image:height" content="630" />
  609.    
  610.    
  611.    <meta property="og:image:alt" content="Social media image" />
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619.  
  620.  
  621.  
  622.  <meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
  623.  
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631. <meta name="twitter:title" content="Original Laptop &amp; Tablet Parts in Canada">
  632. <meta name="twitter:description" content="Get top-quality Laptop Parts in Canada at LaptopParts.ca! Find Laptop Chargers, Batteries, Power Cords, AC adaptors and more. Your one-stop shop for Laptop Parts!">
  633.  
  634.  
  635.    
  636.    
  637.    
  638.      
  639.      
  640.      <meta name="twitter:card" content="summary_large_image">
  641.    
  642.    
  643.    <meta
  644.      property="twitter:image"
  645.      content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
  646.    />
  647.    <meta property="twitter:image:width" content="1200" />
  648.    <meta property="twitter:image:height" content="600" />
  649.    
  650.    
  651.    <meta property="twitter:image:alt" content="Social media image" />
  652.  
  653. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
  654. <script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
  655.  
  656.  
  657.  
  658.    <link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.5bd4fb9346d13afb61b3d78f8a1e9f31b128b3d9.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2ae13feb1dfd0d8ba6bfd71029ee92ac78d286ff7b755b57291941f31f1674e4" as="font" crossorigin="anonymous">
  659.    <link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
  660.  
  661.    <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.start');</script><meta name="google-site-verification" content="CrDzWSvAeMDFWNGBM_-BRbrjFQyoT_40-GZWV79wfbw">
  662. <meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
  663. <meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
  664. <meta id="in-context-paypal-metadata" data-shop-id="11386172" data-venmo-supported="false" data-environment="production" data-locale="en_US" data-paypal-v4="true" data-currency="CAD">
  665. <script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
  666. <link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
  667. <script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
  668. <script id="apple-pay-shop-capabilities" type="application/json">{"shopId":11386172,"countryCode":"CA","currencyCode":"CAD","merchantCapabilities":["supports3DS"],"merchantId":"gid:\/\/shopify\/Shop\/11386172","merchantName":"LaptopParts.ca","requiredBillingContactFields":["postalAddress","email"],"requiredShippingContactFields":["postalAddress","email"],"shippingType":"shipping","supportedNetworks":["visa","masterCard","amex","discover","interac","jcb"],"total":{"type":"pending","label":"LaptopParts.ca","amount":"1.00"},"shopifyPaymentsEnabled":true,"supportsSubscriptions":true}</script>
  669. <script id="shopify-features" type="application/json">{"accessToken":"d20210e10f5cfcb163289d215c1a7239","betas":["rich-media-storefront-analytics"],"domain":"laptopparts.ca","predictiveSearch":true,"shopId":11386172,"smart_payment_buttons_url":"https:\/\/laptopparts.ca\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/spb.en.js","dynamic_checkout_cart_url":"https:\/\/laptopparts.ca\/cdn\/shopifycloud\/payment-sheet\/assets\/latest\/dynamic-checkout-cart.en.js","locale":"en"}</script>
  670. <script>var Shopify = Shopify || {};
  671. Shopify.shop = "laptoppartsatp.myshopify.com";
  672. Shopify.locale = "en";
  673. Shopify.currency = {"active":"CAD","rate":"1.0"};
  674. Shopify.country = "CA";
  675. Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
  676. Shopify.theme.handle = "null";
  677. Shopify.theme.style = {"id":null,"handle":null};
  678. Shopify.cdnHost = "laptopparts.ca/cdn";
  679. Shopify.routes = Shopify.routes || {};
  680. Shopify.routes.root = "/";</script>
  681. <script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
  682. <script>!function(o){function n(){var o=[];function n(){o.push(Array.prototype.slice.apply(arguments))}return n.q=o,n}var t=o.Shopify=o.Shopify||{};t.loadFeatures=n(),t.autoloadFeatures=n()}(window);</script>
  683. <script>window.ShopifyPay = window.ShopifyPay || {};
  684. window.ShopifyPay.apiHost = "shop.app\/pay";</script>
  685. <script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
  686. <script>
  687.  window.Shopify = window.Shopify || {};
  688.  if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
  689.  window.Shopify.featureAssets['shop-js'] = {"pay-button":["modules/client.pay-button_CUnJ4mxT.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"avatar":["modules/client.avatar_BTnouDA3.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/client.init-shop-email-lookup-coordinator_Cvq-awuK.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"init-customer-accounts-sign-up":["modules/client.init-customer-accounts-sign-up_q0Lq9zwa.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/client.init-shop-for-new-customer-accounts_Dk4hKwLj.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"],"init-customer-accounts":["modules/client.init-customer-accounts_C6p9QzrF.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"],"shop-pay-payment-request":["modules/client.shop-pay-payment-request_Ba1p9ane.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js","modules/chunk.shop-pay_C8q_1fm1.esm.js"],"discount-app":["modules/client.discount-app_BIPXfj_1.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"login-button":["modules/client.login-button_BXY0vbFt.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"payment-terms":["modules/client.payment-terms_CXNNgMn-.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"]};
  690. </script>
  691. <script>(function() {
  692.  function asyncLoad() {
  693.    var urls = ["\/\/static.zotabox.com\/0\/9\/098c469a55b8508df7cc687731ea9d89\/widgets.js?shop=laptoppartsatp.myshopify.com","https:\/\/sociallogin-3cb0.kxcdn.com\/resource\/resource.js?cache_key=150634481676\u0026shop=laptoppartsatp.myshopify.com","https:\/\/requestquote.w3apps.co\/js\/app.js?shop=laptoppartsatp.myshopify.com","\/\/livesearch.okasconcepts.com\/js\/livesearch.init.min.js?v=2\u0026shop=laptoppartsatp.myshopify.com","https:\/\/production-assets.app.poalpha.com\/assets\/scripts\/preorderalpha.js?shop=laptoppartsatp.myshopify.com","https:\/\/cdn.hextom.com\/js\/quickannouncementbar.js?shop=laptoppartsatp.myshopify.com","https:\/\/static.klaviyo.com\/onsite\/js\/Vnz9UH\/klaviyo.js?company_id=Vnz9UH\u0026shop=laptoppartsatp.myshopify.com"];
  694.    for (var i = 0; i < urls.length; i++) {
  695.      var s = document.createElement('script');
  696.      s.type = 'text/javascript';
  697.      s.async = true;
  698.      s.src = urls[i];
  699.      var x = document.getElementsByTagName('script')[0];
  700.      x.parentNode.insertBefore(s, x);
  701.    }
  702.  };
  703.  if(window.attachEvent) {
  704.    window.attachEvent('onload', asyncLoad);
  705.  } else {
  706.    window.addEventListener('load', asyncLoad, false);
  707.  }
  708. })();</script>
  709. <script id="__st">var __st={"a":11386172,"offset":-18000,"reqid":"6236cd99-7a2f-4e88-bd5f-6d7402186b3f-1734181071","pageurl":"laptopparts.ca\/","u":"27031221ffda","p":"home"};</script>
  710. <script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
  711. <script id="captcha-bootstrap">!function(){'use strict';const t='contact',e='account',n='new_comment',o=[[t,t],['blogs',n],['comments',n],[t,'customer']],c=[[e,'customer_login'],[e,'guest_login'],[e,'recover_customer_password'],[e,'create_customer']],r=t=>t.map((([t,e])=>`form[action*='/${t}']:not([data-nocaptcha='true']) input[name='form_type'][value='${e}']`)).join(','),a=t=>()=>t?[...document.querySelectorAll(t)].map((t=>t.form)):[];function s(){const t=[...o],e=r(t);return a(e)}function i(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=c.action?c:{data:c};for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch{}}const u='password',m='form_key',f=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',u],d=()=>{try{return window.sessionStorage}catch{return}},p=t=>t.elements[m],l='form_type',h='cptcha';function _(t){t.dataset[h]=!0}const y=window,E=y.document,v='Shopify',g='ce_forms',T='captcha';let S=!1;((t,e)=>{const n=(w='f06e6c50-85a8-45c8-87d0-21a2b65856fe','https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.0.iife.js',A={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=y[v][g],c=o.bindForm;if(c)return c(t,w,e,A).then(n);o.q.push([[t,w,e,A],n]),S||(E.body.append(Object.assign(E.createElement('script'),{id:'captcha-provider',async:!0,src:'https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.0.iife.js'})),S=!0)});var w,A;y[v]=y[v]||{},y[v][g]=y[v][g]||{},y[v][g].q=[],y[v][T]=y[v][T]||{},y[v][T].protect=function(t,e){n(t,void 0,e),_(t)},Object.freeze(y[v][T]),function(t,e,n,y,E,v){const[g,T,S,w]=function(t,e,n){const i=e?o:[],u=t?c:[],m=[...i,...u],f=r(m),d=r(i),p=n&&r(m.filter((([t,e])=>n.includes(e))));return[a(f),a(d),a(p),s()]}(y,E,v),A=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},b=t=>g().includes(t);t.addEventListener('submit',(t=>{const e=A(t);if(!e)return;const n=b(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=p(e),c=w().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!d())return;!function(t){const e=d();if(!e)return;const n=p(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){p(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:m})),t.elements[m].value=e}(t,e),function(t,e){const n=d();if(!n)return;const o=[...t.querySelectorAll(`input[type='${u}']`)].map((({name:t})=>t)),c=[...f,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const I=(t,e)=>{t&&!t.dataset[h]&&(n(t,e.some((e=>e===t))),_(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=A(t);b(e)&&I(e,T())}));const O=e.get('form_key'),R=e.get(l),L=O&&R;t.addEventListener('DOMContentLoaded',(()=>{const t=T();if(L)for(const e of t)e.elements[l].value===R&&i(e,O);[...new Set([...S(),...g().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>I(e,t)))}))}(E,new URLSearchParams(y.location.search),n,!1,!0,['guest_login'])})()}();</script>
  712. <script integrity="sha256-EGCDRYTvIEOXsReXgqGwkAR+5Dl8tickSrieA/ZcQwc=" data-source-attribution="shopify.loadfeatures" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/storefront/load_feature-1060834584ef204397b1179782a1b090047ee4397cb627244ab89e03f65c4307.js" crossorigin="anonymous"></script>
  713. <script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script>
  714. <script data-source-attribution="shopify.dynamic_checkout.dynamic.init">var Shopify=Shopify||{};Shopify.PaymentButton=Shopify.PaymentButton||{isStorefrontPortableWallets:!0,init:function(){window.Shopify.PaymentButton.init=function(){};var t=document.createElement("script");t.src="https://laptopparts.ca/cdn/shopifycloud/portable-wallets/latest/portable-wallets.en.js",t.type="module",document.head.appendChild(t)}};
  715. </script>
  716. <script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
  717.  function portableWalletsHideBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.add("hidden"),t.setAttribute("aria-hidden","true"),n.removeEventListener("click",e))}function portableWalletsShowBuyerConsent(e){var t=document.getElementById("shopify-buyer-consent"),n=document.getElementById("shopify-subscription-policy-button");t&&n&&(t.classList.remove("hidden"),t.removeAttribute("aria-hidden"),n.addEventListener("click",e))}window.Shopify?.PaymentButton&&(window.Shopify.PaymentButton.hideBuyerConsent=portableWalletsHideBuyerConsent,window.Shopify.PaymentButton.showBuyerConsent=portableWalletsShowBuyerConsent);
  718. </script>
  719. <script data-source-attribution="shopify.dynamic_checkout.cart.bootstrap">document.addEventListener("DOMContentLoaded",(function(){function t(){return document.querySelector("shopify-accelerated-checkout-cart, shopify-accelerated-checkout")}if(t())Shopify.PaymentButton.init();else{new MutationObserver((function(e,n){t()&&(Shopify.PaymentButton.init(),n.disconnect())})).observe(document.body,{childList:!0,subtree:!0})}}));
  720. </script>
  721.  
  722.  
  723.  
  724. <style id="shopify-accelerated-checkout-cart">
  725.        #dynamic-checkout-cart {
  726.  container-type: inline-size;
  727.  container-name: dcc;
  728.  width: 100%;
  729. }
  730.  
  731. .wallet-cart-grid {
  732.  --wallet-button-height-horizontal: clamp(
  733.    25px,
  734.    var(
  735.      --shopify-accelerated-checkout-button-inline-size,
  736.      42px
  737.    ),
  738.    55px
  739.  );
  740.  --wallet-button-height-vertical: clamp(
  741.    25px,
  742.    var(
  743.      --shopify-accelerated-checkout-button-block-size,
  744.      54px
  745.    ),
  746.    55px
  747.  );
  748.  --wallet-button-width-horizontal: 150px;
  749.  --wallet-button-width-vertical: 100%;
  750.  --wallet-button-border-radius: var(
  751.    --shopify-accelerated-checkout-button-border-radius,
  752.    4px
  753.  );
  754.  --wallet-grid-margin-horizontal: 0 -5px -5px -5px;
  755.  --wallet-button-container-margin-horizontal: 0 5px 5px;
  756.  --wallet-button-container-margin-vertical: var(--shopify-accelerated-checkout-row-gap, 8px) 0 0;
  757. }
  758.  
  759. @keyframes acceleratedCheckoutLoadingSkeleton {
  760.  50% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
  761.  75% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-end, 0.5);}
  762.  100% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
  763. }
  764.  
  765. .wallet-cart-button__skeleton {
  766.  animation: acceleratedCheckoutLoadingSkeleton var(--shopify-accelerated-checkout-skeleton-animation-duration, 4s) var(--shopify-accelerated-checkout-skeleton-animation-timing-function, ease) infinite;
  767.  animation-delay: -0.168s;
  768.  background-color: var(--shopify-accelerated-checkout-skeleton-background-color, #dedede);
  769.  box-sizing: border-box;
  770.  text-decoration: none !important;
  771. }
  772.  
  773. .wallet-cart-grid {
  774.  margin: var(--wallet-grid-margin-horizontal);
  775.  padding: 0;
  776.  display: flex;
  777.  flex-direction: row;
  778.  justify-content: var(--shopify-accelerated-checkout-inline-alignment, start);
  779.  gap: 0 !important;
  780. }
  781.  
  782. .wallet-cart-grid--skeleton {
  783.  justify-content: var(--shopify-accelerated-checkout-inline-alignment, inherit);
  784. }
  785.  
  786. .wallet-cart-button-container {
  787.  position: relative;
  788.  margin: var(--wallet-button-container-margin-horizontal);
  789. }
  790.  
  791. .wallet-cart-button-container,
  792. .wallet-cart-button {
  793.  width: var(--wallet-button-width-horizontal);
  794.  height: var(--wallet-button-height-horizontal);
  795.  border-radius: var(--wallet-button-border-radius);
  796.  list-style-type: none !important;
  797.  text-align: center;
  798.  flex-shrink: 0;
  799.  flex-grow: 0;
  800. }
  801.  
  802. .additional-checkout-buttons--vertical .wallet-cart-grid {
  803.  justify-content: start;
  804.  flex-direction: column;
  805.  margin: 0;
  806. }
  807. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container {
  808.  width: var(--wallet-button-width-vertical);
  809.  height: var(--wallet-button-height-vertical);
  810.  margin: var(--wallet-button-container-margin-vertical);
  811. }
  812. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
  813.  margin-top: 0;
  814. }
  815. .additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button {
  816.  width: var(--wallet-button-width-vertical);
  817.  height: var(--wallet-button-height-vertical);
  818. }
  819.  
  820. .additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button-container,
  821. .additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button {
  822.  width: var(--wallet-button-width-horizontal) !important;
  823.  height: var(--wallet-button-height-horizontal) !important;
  824.  border-radius: var(--wallet-button-border-radius) !important;
  825. }
  826.  
  827. @container dcc (width >= 150px) and (width <= 500px) {
  828.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) {
  829.    justify-content: start;
  830.    flex-direction: column;
  831.    margin: 0;
  832.  }
  833.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container {
  834.    width: var(--wallet-button-width-vertical);
  835.    height: var(--wallet-button-height-vertical);
  836.    margin: var(--wallet-button-container-margin-vertical);
  837.  }
  838.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
  839.    margin-top: 0;
  840.  }
  841.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button {
  842.    width: var(--wallet-button-width-vertical);
  843.    height: var(--wallet-button-height-vertical);
  844.  }
  845. }
  846.  
  847. @container dcc (width <= 310px) {
  848.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) {
  849.    justify-content: start;
  850.    flex-direction: column;
  851.    margin: 0;
  852.  }
  853.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container {
  854.    width: var(--wallet-button-width-vertical);
  855.    height: var(--wallet-button-height-vertical);
  856.    margin: var(--wallet-button-container-margin-vertical);
  857.  }
  858.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
  859.    margin-top: 0;
  860.  }
  861.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button {
  862.    width: var(--wallet-button-width-vertical);
  863.    height: var(--wallet-button-height-vertical);
  864.  }
  865. }
  866.  
  867. @container dcc (width <= 470px) {
  868.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) {
  869.    justify-content: start;
  870.    flex-direction: column;
  871.    margin: 0;
  872.  }
  873.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container {
  874.    width: var(--wallet-button-width-vertical);
  875.    height: var(--wallet-button-height-vertical);
  876.    margin: var(--wallet-button-container-margin-vertical);
  877.  }
  878.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
  879.    margin-top: 0;
  880.  }
  881.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button {
  882.    width: var(--wallet-button-width-vertical);
  883.    height: var(--wallet-button-height-vertical);
  884.  }
  885. }
  886.  
  887. @container dcc (width <= 630px) {
  888.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) {
  889.    justify-content: start;
  890.    flex-direction: column;
  891.    margin: 0;
  892.  }
  893.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container {
  894.    width: var(--wallet-button-width-vertical);
  895.    height: var(--wallet-button-height-vertical);
  896.    margin: var(--wallet-button-container-margin-vertical);
  897.  }
  898.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
  899.    margin-top: 0;
  900.  }
  901.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button {
  902.    width: var(--wallet-button-width-vertical);
  903.    height: var(--wallet-button-height-vertical);
  904.  }
  905. }
  906.  
  907. @container dcc (width <= 790px) {
  908.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) {
  909.    justify-content: start;
  910.    flex-direction: column;
  911.    margin: 0;
  912.  }
  913.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container {
  914.    width: var(--wallet-button-width-vertical);
  915.    height: var(--wallet-button-height-vertical);
  916.    margin: var(--wallet-button-container-margin-vertical);
  917.  }
  918.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
  919.    margin-top: 0;
  920.  }
  921.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button {
  922.    width: var(--wallet-button-width-vertical);
  923.    height: var(--wallet-button-height-vertical);
  924.  }
  925. }
  926.  
  927. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) {
  928.  justify-content: start;
  929.  flex-direction: column;
  930.  margin: 0;
  931. }
  932. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container {
  933.  width: var(--wallet-button-width-vertical);
  934.  height: var(--wallet-button-height-vertical);
  935.  margin: var(--wallet-button-container-margin-vertical);
  936. }
  937. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
  938.  margin-top: 0;
  939. }
  940. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button {
  941.  width: var(--wallet-button-width-vertical);
  942.  height: var(--wallet-button-height-vertical);
  943. }
  944.  
  945. @media screen and (max-width: 750px) {
  946.  .wallet-cart-grid {
  947.    justify-content: start;
  948.    flex-direction: column;
  949.    max-width: none;
  950.    margin: 0;
  951.  }
  952.  .wallet-cart-grid .wallet-cart-button-container {
  953.    max-width: none;
  954.    width: var(--wallet-button-width-vertical);
  955.    height: var(--wallet-button-height-vertical);
  956.    margin: var(--wallet-button-container-margin-vertical);
  957.  }
  958.  .wallet-cart-grid .wallet-cart-button-container:first-child {
  959.    margin-top: 0;
  960.  }
  961.  .wallet-cart-grid .wallet-cart-button {
  962.    width: var(--wallet-button-width-vertical);
  963.    height: var(--wallet-button-height-vertical);
  964.  }
  965. }
  966.  
  967. @supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
  968.  .wallet-cart-grid {
  969.    justify-content: start;
  970.    flex-direction: column;
  971.    margin: 0;
  972.  }
  973.  .wallet-cart-button-container {
  974.    width: var(--wallet-button-width-vertical);
  975.    height: var(--wallet-button-height-vertical);
  976.    margin: var(--wallet-button-container-margin-vertical);
  977.  }
  978.  .wallet-cart-button-container:first-child {
  979.    margin-top: 0;
  980.  }
  981.  .wallet-cart-grid .wallet-cart-button {
  982.    width: var(--wallet-button-width-vertical);
  983.    height: var(--wallet-button-height-vertical);
  984.  }
  985. }
  986.  
  987.        #shopify-buyer-consent {
  988.  margin-top: 1em;
  989.  display: inline-block;
  990.  width: 100%;
  991. }
  992.  
  993. #shopify-buyer-consent.hidden {
  994.  display: none;
  995. }
  996.  
  997. #shopify-subscription-policy-button {
  998.  background: none;
  999.  border: none;
  1000.  padding: 0;
  1001.  text-decoration: underline;
  1002.  font-size: inherit;
  1003.  cursor: pointer;
  1004. }
  1005.  
  1006. #shopify-subscription-policy-button::before {
  1007.  box-shadow: none;
  1008. }
  1009.  
  1010.      </style>
  1011.  
  1012. <style id="shopify-accelerated-checkout-cart-grid-with-margin-top">.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
  1013.  margin-top: 8px;
  1014. }
  1015.  
  1016.  
  1017. @container dcc (width >= 150px) and (width <= 500px) {
  1018.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(1)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(2))) .wallet-cart-button-container:first-child {
  1019.    margin-top: 8px;
  1020.  }
  1021. }
  1022.  
  1023. @container dcc (width <= 310px) {
  1024.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(2)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(3))) .wallet-cart-button-container:first-child {
  1025.    margin-top: 8px;
  1026.  }
  1027. }
  1028.  
  1029. @container dcc (width <= 470px) {
  1030.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(3)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(4))) .wallet-cart-button-container:first-child {
  1031.    margin-top: 8px;
  1032.  }
  1033. }
  1034.  
  1035. @container dcc (width <= 630px) {
  1036.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(4)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(5))) .wallet-cart-button-container:first-child {
  1037.    margin-top: 8px;
  1038.  }
  1039. }
  1040.  
  1041. @container dcc (width <= 790px) {
  1042.  .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(5)).wallet-cart-grid:not(:has(>.wallet-cart-button-container:nth-of-type(6))) .wallet-cart-button-container:first-child {
  1043.    margin-top: 8px;
  1044.  }
  1045. }
  1046.  
  1047. .wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
  1048.  margin-top: 8px;
  1049. }
  1050.  
  1051. @media screen and (max-width: 750px) {
  1052.  .wallet-cart-grid .wallet-cart-button-container:first-child {
  1053.    margin-top: 8px;
  1054.  }
  1055. }
  1056.  
  1057. @supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
  1058.  .wallet-cart-button-container:first-child {
  1059.    margin-top: 8px;
  1060.  }
  1061. }
  1062. </style>
  1063. <script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
  1064.  
  1065.    <link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
  1066.  
  1067.    
  1068.    <script>
  1069.      window.Theme = window.Theme || {};
  1070.      window.Theme.version = '9.1.1';
  1071.      window.Theme.name = 'Empire';
  1072.      window.Theme.routes = {
  1073.        "root_url": "/",
  1074.        "account_url": "/account",
  1075.        "account_login_url": "/account/login",
  1076.        "account_logout_url": "/account/logout",
  1077.        "account_register_url": "/account/register",
  1078.        "account_addresses_url": "/account/addresses",
  1079.        "collections_url": "/collections",
  1080.        "all_products_collection_url": "/collections/all",
  1081.        "search_url": "/search",
  1082.        "predictive_search_url": "/search/suggest",
  1083.        "cart_url": "/cart",
  1084.        "cart_add_url": "/cart/add",
  1085.        "cart_change_url": "/cart/change",
  1086.        "cart_clear_url": "/cart/clear",
  1087.        "product_recommendations_url": "/recommendations/products",
  1088.      };
  1089.    </script>
  1090.    
  1091.  
  1092.    
  1093.  
  1094.    
  1095.    
  1096.    
  1097.    
  1098.      <script
  1099.        async="async"
  1100.        src="https://livesearch.okasconcepts.com/js/livesearch.init.min.js?v=2&shop=laptoppartsatp.myshopify.com"
  1101.      ></script>
  1102.    
  1103.  <script src="https://cdn.shopify.com/extensions/65c5a9b9-306d-47b4-8dd4-d66c9686644f/upcart-cart-drawer-75/assets/upcart-bundle.js" type="text/javascript" defer="defer"></script>
  1104. <link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
  1105. <script>(function(){if ("sendBeacon" in navigator && "performance" in window) {var session_token = document.cookie.match(/_shopify_s=([^;]*)/);function handle_abandonment_event(e) {var entries = performance.getEntries().filter(function(entry) {return /monorail-edge.shopifysvc.com/.test(entry.name);});if (!window.abandonment_tracked && entries.length === 0) {window.abandonment_tracked = true;var currentMs = Date.now();var navigation_start = performance.timing.navigationStart;var payload = {shop_id: 11386172,url: window.location.href,navigation_start,duration: currentMs - navigation_start,session_token: session_token && session_token.length === 2 ? session_token[1] : "",page_type: "index"};window.navigator.sendBeacon("https://monorail-edge.shopifysvc.com/v1/produce", JSON.stringify({schema_id: "online_store_buyer_site_abandonment/1.1",payload: payload,metadata: {event_created_at_ms: currentMs,event_sent_at_ms: currentMs}}));}}window.addEventListener('pagehide', handle_abandonment_event);}}());</script>
  1106. <script id="web-pixels-manager-setup">(function d(d,e,r,a,n){var o,i,t,s,l=(i=(o={modern:/Edge?\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Firefox\/(1{2}[4-9]|1[2-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Chrom(ium|e)\/(9{2}|\d{3,})\.\d+(\.\d+|)|(Maci|X1{2}).+ Version\/(15\.\d+|(1[6-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(9{2}|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(15[._]\d+|(1[6-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|SamsungBrowser\/([2-9]\d|\d{3,})\.\d+/,legacy:/Edge?\/(1[6-9]|[2-9]\d|\d{3,})\.\d+(\.\d+|)|Firefox\/(5[4-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)|Chrom(ium|e)\/(5[1-9]|[6-9]\d|\d{3,})\.\d+(\.\d+|)([\d.]+$|.*Safari\/(?![\d.]+ Edge\/[\d.]+$))|(Maci|X1{2}).+ Version\/(10\.\d+|(1[1-9]|[2-9]\d|\d{3,})\.\d+)([,.]\d+|)( \(\w+\)|)( Mobile\/\w+|) Safari\/|Chrome.+OPR\/(3[89]|[4-9]\d|\d{3,})\.\d+\.\d+|(CPU[ +]OS|iPhone[ +]OS|CPU[ +]iPhone|CPU IPhone OS|CPU iPad OS)[ +]+(10[._]\d+|(1[1-9]|[2-9]\d|\d{3,})[._]\d+)([._]\d+|)|Android:?[ /-](12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})(\.\d+|)(\.\d+|)|Mobile Safari.+OPR\/([89]\d|\d{3,})\.\d+\.\d+|Android.+Firefox\/(12[7-9]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+Chrom(ium|e)\/(12[89]|1[3-9]\d|[2-9]\d{2}|\d{4,})\.\d+(\.\d+|)|Android.+(UC? ?Browser|UCWEB|U3)[ /]?(15\.([5-9]|\d{2,})|(1[6-9]|[2-9]\d|\d{3,})\.\d+)\.\d+|SamsungBrowser\/(5\.\d+|([6-9]|\d{2,})\.\d+)|Android.+MQ{2}Browser\/(14(\.(9|\d{2,})|)|(1[5-9]|[2-9]\d|\d{3,})(\.\d+|))(\.\d+|)|K[Aa][Ii]OS\/(3\.\d+|([4-9]|\d{2,})\.\d+)(\.\d+|)/}).modern,t=o.legacy,s=navigator.userAgent,i.test(s)?"modern":(t.test(s),"legacy"));window.Shopify=window.Shopify||{};var c=window.Shopify;c.analytics=c.analytics||{};var u=c.analytics;u.replayQueue=[],u.publish=function(d,e,r){return u.replayQueue.push([d,e,r]),!0};try{self.performance.mark("wpm:start")}catch(d){}var h=[r,"/wpm","/b",n,l.substring(0,1),".js"].join("");!function(d){var e=d.src,r=d.async,a=void 0===r||r,n=d.onload,o=d.onerror,i=document.createElement("script"),t=document.head,s=document.body;i.async=a,i.src=e,n&&i.addEventListener("load",n),o&&i.addEventListener("error",o),t?t.appendChild(i):s?s.appendChild(i):console.error("Did not find a head or body element to append the script")}({src:h,async:!0,onload:function(){var r=window.webPixelsManager.init(d);e(r);var a=window.Shopify.analytics;a.replayQueue.forEach((function(d){var e=d[0],a=d[1],n=d[2];r.publishCustomEvent(e,a,n)})),a.replayQueue=[],a.publish=r.publishCustomEvent,a.visitor=r.visitor},onerror:function(){var e=d.storefrontBaseUrl.replace(/\/$/,""),r="".concat(e,"/.well-known/shopify/monorail/unstable/produce_batch"),n=JSON.stringify({metadata:{event_sent_at_ms:(new Date).getTime()},events:[{schema_id:"web_pixels_manager_load/3.1",payload:{version:a||"latest",bundle_target:l,page_url:self.location.href,status:"failed",surface:d.surface,error_msg:"".concat(h," has failed to load")},metadata:{event_created_at_ms:(new Date).getTime()}}]});try{if(self.navigator.sendBeacon.bind(self.navigator)(r,n))return!0}catch(d){}var o=new XMLHttpRequest;try{return o.open("POST",r,!0),o.setRequestHeader("Content-Type","text/plain"),o.send(n),!0}catch(d){console&&console.warn&&console.warn("[Web Pixels Manager] Got an unhandled error while logging a load error.")}return!1}})})({shopId: 11386172,storefrontBaseUrl: "https://laptopparts.ca",extensionsBaseUrl: "https://extensions.shopifycdn.com/cdn/shopifycloud/web-pixels-manager",surface: "storefront-renderer",enabledBetaFlags: [],webPixelsConfigList: [{"id":"392691799","configuration":"{\"config\":\"{\\\"pixel_id\\\":\\\"G-R766FMP28N\\\",\\\"target_country\\\":\\\"CA\\\",\\\"gtag_events\\\":[{\\\"type\\\":\\\"search\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/8pFiCPHhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"begin_checkout\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/GZ2ECPfhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"view_item\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/1qhMCO7hwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"purchase\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/K-jbCOjhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"page_view\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/Pl4oCOvhwI4YEJTzkNID\\\",\\\"MC-EG05CD26V5\\\"]},{\\\"type\\\":\\\"add_payment_info\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/QncHCPrhwI4YEJTzkNID\\\"]},{\\\"type\\\":\\\"add_to_cart\\\",\\\"action_label\\\":[\\\"G-R766FMP28N\\\",\\\"AW-977549716\\\/b4EuCPThwI4YEJTzkNID\\\"]}],\\\"enable_monitoring_mode\\\":false}\"}","eventPayloadVersion":"v1","runtimeContext":"OPEN","scriptVersion":"afe7c2de16587d6c6689522527d6c67f","type":"APP","apiClientId":1780363,"privacyPurposes":[]},{"id":"328826967","configuration":"{\"accountID\":\"y3ihof\"}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"219ec19a744f4aff2da134bac3704727","type":"APP","apiClientId":5206611,"privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"]},{"id":"43057239","eventPayloadVersion":"1","runtimeContext":"LAX","scriptVersion":"1","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING","SALE_OF_DATA"],"name":"Shopper Approved TYP code"},{"id":"shopify-app-pixel","configuration":"{}","eventPayloadVersion":"v1","runtimeContext":"STRICT","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"APP","privacyPurposes":["ANALYTICS","MARKETING"]},{"id":"shopify-custom-pixel","eventPayloadVersion":"v1","runtimeContext":"LAX","scriptVersion":"0220","apiClientId":"shopify-pixel","type":"CUSTOM","privacyPurposes":["ANALYTICS","MARKETING"]}],isMerchantRequest: false,initData: {"shop":{"name":"LaptopParts.ca","paymentSettings":{"currencyCode":"CAD"},"myshopifyDomain":"laptoppartsatp.myshopify.com","countryCode":"CA","storefrontUrl":"https:\/\/laptopparts.ca"},"customer":null,"cart":null,"checkout":null,"productVariants":[],"purchasingCompany":null},},function pageEvents(webPixelsManagerAPI) {webPixelsManagerAPI.publish("page_viewed", {});},"https://laptopparts.ca/cdn","8b5bb66465490549d0075e408d4417a651aab7cf","eacc1c7dw9d7f2563p4733c06fm5ec1f798",);</script>  <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
  1107. window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
  1108. window.ShopifyAnalytics.meta.currency = 'CAD';
  1109. var meta = {"page":{"pageType":"home"}};
  1110. for (var attr in meta) {
  1111.  window.ShopifyAnalytics.meta[attr] = meta[attr];
  1112. }</script>
  1113. <script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
  1114.  
  1115. };
  1116. </script>
  1117. <script class="analytics">(function () {
  1118.    var customDocumentWrite = function(content) {
  1119.      var jquery = null;
  1120.  
  1121.      if (window.jQuery) {
  1122.        jquery = window.jQuery;
  1123.      } else if (window.Checkout && window.Checkout.$) {
  1124.        jquery = window.Checkout.$;
  1125.      }
  1126.  
  1127.      if (jquery) {
  1128.        jquery('body').append(content);
  1129.      }
  1130.    };
  1131.  
  1132.    var hasLoggedConversion = function(token) {
  1133.      if (token) {
  1134.        return document.cookie.indexOf('loggedConversion=' + token) !== -1;
  1135.      }
  1136.      return false;
  1137.    }
  1138.  
  1139.    var setCookieIfConversion = function(token) {
  1140.      if (token) {
  1141.        var twoMonthsFromNow = new Date(Date.now());
  1142.        twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
  1143.  
  1144.        document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
  1145.      }
  1146.    }
  1147.  
  1148.    var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
  1149.    if (trekkie.integrations) {
  1150.      return;
  1151.    }
  1152.    trekkie.methods = [
  1153.      'identify',
  1154.      'page',
  1155.      'ready',
  1156.      'track',
  1157.      'trackForm',
  1158.      'trackLink'
  1159.    ];
  1160.    trekkie.factory = function(method) {
  1161.      return function() {
  1162.        var args = Array.prototype.slice.call(arguments);
  1163.        args.unshift(method);
  1164.        trekkie.push(args);
  1165.        return trekkie;
  1166.      };
  1167.    };
  1168.    for (var i = 0; i < trekkie.methods.length; i++) {
  1169.      var key = trekkie.methods[i];
  1170.      trekkie[key] = trekkie.factory(key);
  1171.    }
  1172.    trekkie.load = function(config) {
  1173.      trekkie.config = config || {};
  1174.      trekkie.config.initialDocumentCookie = document.cookie;
  1175.      var first = document.getElementsByTagName('script')[0];
  1176.      var script = document.createElement('script');
  1177.      script.type = 'text/javascript';
  1178.      script.onerror = function(e) {
  1179.        var scriptFallback = document.createElement('script');
  1180.        scriptFallback.type = 'text/javascript';
  1181.        scriptFallback.onerror = function(error) {
  1182.                var Monorail = {
  1183.      produce: function produce(monorailDomain, schemaId, payload) {
  1184.        var currentMs = new Date().getTime();
  1185.        var event = {
  1186.          schema_id: schemaId,
  1187.          payload: payload,
  1188.          metadata: {
  1189.            event_created_at_ms: currentMs,
  1190.            event_sent_at_ms: currentMs
  1191.          }
  1192.        };
  1193.        return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
  1194.      },
  1195.      sendRequest: function sendRequest(endpointUrl, payload) {
  1196.        // Try the sendBeacon API
  1197.        if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
  1198.          var blobData = new window.Blob([payload], {
  1199.            type: 'text/plain'
  1200.          });
  1201.  
  1202.          if (window.navigator.sendBeacon(endpointUrl, blobData)) {
  1203.            return true;
  1204.          } // sendBeacon was not successful
  1205.  
  1206.        } // XHR beacon
  1207.  
  1208.        var xhr = new XMLHttpRequest();
  1209.  
  1210.        try {
  1211.          xhr.open('POST', endpointUrl);
  1212.          xhr.setRequestHeader('Content-Type', 'text/plain');
  1213.          xhr.send(payload);
  1214.        } catch (e) {
  1215.          console.log(e);
  1216.        }
  1217.  
  1218.        return false;
  1219.      },
  1220.      isIos12: function isIos12() {
  1221.        return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
  1222.      }
  1223.    };
  1224.    Monorail.produce('monorail-edge.shopifysvc.com',
  1225.      'trekkie_storefront_load_errors/1.1',
  1226.      {shop_id: 11386172,
  1227.      theme_id: 126947917911,
  1228.      app_name: "storefront",
  1229.      context_url: window.location.href,
  1230.      source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.99dbbdfeb1f3090da185887d7e078889edcb783c.min.js"});
  1231.  
  1232.        };
  1233.        scriptFallback.async = true;
  1234.        scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.99dbbdfeb1f3090da185887d7e078889edcb783c.min.js';
  1235.        first.parentNode.insertBefore(scriptFallback, first);
  1236.      };
  1237.      script.async = true;
  1238.      script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.99dbbdfeb1f3090da185887d7e078889edcb783c.min.js';
  1239.      first.parentNode.insertBefore(script, first);
  1240.    };
  1241.    trekkie.load(
  1242.      {"Trekkie":{"appName":"storefront","development":false,"defaultAttributes":{"shopId":11386172,"isMerchantRequest":null,"themeId":126947917911,"themeCityHash":"13552369945968680192","contentLanguage":"en","currency":"CAD"},"isServerSideCookieWritingEnabled":true,"monorailRegion":"shop_domain"},"Session Attribution":{},"S2S":{"facebookCapiEnabled":false,"source":"trekkie-storefront-renderer","apiClientId":580111}}
  1243.    );
  1244.  
  1245.    var loaded = false;
  1246.    trekkie.ready(function() {
  1247.      if (loaded) return;
  1248.      loaded = true;
  1249.  
  1250.      window.ShopifyAnalytics.lib = window.trekkie;
  1251.  
  1252.  
  1253.      var originalDocumentWrite = document.write;
  1254.      document.write = customDocumentWrite;
  1255.      try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
  1256.      document.write = originalDocumentWrite;
  1257.  
  1258.      window.ShopifyAnalytics.lib.page(null,{"pageType":"home"});
  1259.  
  1260.      var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
  1261.      var token = match? match[1]: undefined;
  1262.      if (!hasLoggedConversion(token)) {
  1263.        setCookieIfConversion(token);
  1264.        
  1265.      }
  1266.    });
  1267.  
  1268.  
  1269.        var eventsListenerScript = document.createElement('script');
  1270.        eventsListenerScript.async = true;
  1271.        eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/shopify/assets/shop_events_listener-61fa9e0a912c675e178777d2b27f6cbd482f8912a6b0aa31fa3515985a8cd626.js";
  1272.        document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
  1273.  
  1274. })();</script>
  1275. <script class="boomerang">
  1276. (function () {
  1277.  window.BOOMR = window.BOOMR || {};
  1278.  window.BOOMR.themeName = "Empire";
  1279.  window.BOOMR.themeVersion = "9.1.1";
  1280.  window.BOOMR.shopId = 11386172;
  1281.  window.BOOMR.themeId = 126947917911;
  1282. })();</script>
  1283. <script
  1284.  defer
  1285.  src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.1.0.min.js"
  1286.  data-application="storefront-renderer"
  1287.  data-shop-id="11386172"
  1288.  data-render-region="gcp-us-east1"
  1289.  data-page-type="index"
  1290.  data-theme-instance-id="126947917911"
  1291.  data-monorail-region="shop_domain"
  1292.  data-resource-timing-sampling-rate="10"
  1293. ></script>
  1294. </head>
  1295.  
  1296.  <body
  1297.    class="template-index"
  1298.    data-instant-allow-query-string
  1299.    
  1300.  >
  1301.    <script>
  1302.      document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
  1303.      if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
  1304.      if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
  1305.    </script>
  1306.  
  1307.    <!-- Google Tag Manager (noscript) -->
  1308.    <noscript
  1309.      ><iframe
  1310.        loading="lazy"
  1311.        src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
  1312.        height="0"
  1313.        width="0"
  1314.        style="display:none;visibility:hidden"
  1315.      ></iframe
  1316.    ></noscript>
  1317.    <!-- End Google Tag Manager (noscript) -->
  1318.  
  1319.    
  1320.    <svg
  1321.      class="icon-star-reference"
  1322.      aria-hidden="true"
  1323.      focusable="false"
  1324.      role="presentation"
  1325.      xmlns="http://www.w3.org/2000/svg"
  1326.      width="20"
  1327.      height="20"
  1328.      viewBox="3 3 17 17"
  1329.      fill="none"
  1330.    >
  1331.      <symbol id="icon-star">
  1332.        <rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
  1333.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
  1334.      </symbol>
  1335.      <clipPath id="icon-star-clip">
  1336.        <path d="M10 3L12.163 7.60778L17 8.35121L13.5 11.9359L14.326 17L10 14.6078L5.674 17L6.5 11.9359L3 8.35121L7.837 7.60778L10 3Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
  1337.      </clipPath>
  1338.    </svg>
  1339.    
  1340.  
  1341.    <a class="skip-to-main" href="#site-main">Skip to content</a>
  1342.  
  1343.    <!-- BEGIN sections: header-group -->
  1344. <div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
  1345.  type="application/json"
  1346.  data-section-id="sections--15492291133527__announcement-bar"
  1347.  data-section-type="static-announcement">
  1348. </script>
  1349.  
  1350.  
  1351.  
  1352.  
  1353.  
  1354.  
  1355.  
  1356.  
  1357.  
  1358.  
  1359.    <div
  1360.      class="
  1361.        announcement-bar
  1362.        
  1363.      "
  1364.      style="
  1365.        color: #ffffff;
  1366.        background: #fe0000;
  1367.      "
  1368.      data-announcement-bar
  1369.    >
  1370.      
  1371.  
  1372.      
  1373.        <div class="announcement-bar-text">
  1374.          📞 <b>Text us at 613-704-4708</b>
  1375.  
  1376. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1377.        </div>
  1378.      
  1379.  
  1380.      <div class="announcement-bar-text-mobile">
  1381.        
  1382.          📞 <b>Text us at 613-704-4708</b>
  1383.  
  1384. <img src="https://cdn.shopify.com/s/files/1/1138/6172/files/Canada_Leaf2.jpg?v=1698245130" width="22px"> <b>  Email us Service@laptopparts.ca</b>
  1385.        
  1386.      </div>
  1387.    </div>
  1388.  
  1389.  
  1390.  
  1391. </div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
  1392.  
  1393.  
  1394. <script
  1395.  type="application/json"
  1396.  data-section-id="sections--15492291133527__header"
  1397.  data-section-type="static-header"
  1398.  data-section-data>
  1399.  {
  1400.    "settings": {
  1401.      "sticky_header": false,
  1402.      "has_box_shadow": false,
  1403.      "live_search": {
  1404.        "enable": true,
  1405.        "money_format": "${{amount}}",
  1406.        "show_mobile_search_bar": false
  1407.      }
  1408.    }
  1409.  }
  1410. </script>
  1411.  
  1412.  
  1413.  
  1414.  
  1415.  
  1416. <style data-shopify>
  1417.  .site-logo {
  1418.    max-width: 250px;
  1419.  }
  1420.  
  1421.  .site-logo-image {
  1422.    max-height: 100px;
  1423.  }
  1424. </style>
  1425.  
  1426. <header
  1427.  class="site-header site-header-nav--open"
  1428.  role="banner"
  1429.  data-site-header
  1430. >
  1431.  <div
  1432.    class="
  1433.      site-header-main
  1434.      
  1435.        site-header--full-width
  1436.      
  1437.    "
  1438.    data-site-header-main
  1439.    
  1440.    
  1441.      data-site-header-mobile-search-button
  1442.    
  1443.  >
  1444.    <button class="site-header-menu-toggle" data-menu-toggle>
  1445.      <div class="site-header-menu-toggle--button" tabindex="-1">
  1446.        <span class="toggle-icon--bar toggle-icon--bar-top"></span>
  1447.        <span class="toggle-icon--bar toggle-icon--bar-middle"></span>
  1448.        <span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
  1449.        <span class="visually-hidden">Menu</span>
  1450.      </div>
  1451.    </button>
  1452.  
  1453.    
  1454.      
  1455.      
  1456.        <button
  1457.          class="site-header-mobile-search-button"
  1458.          data-mobile-search-button
  1459.        >
  1460.          
  1461.        <div class="site-header-mobile-search-button--button" tabindex="-1">
  1462.          <svg
  1463.  aria-hidden="true"
  1464.  focusable="false"
  1465.  role="presentation"
  1466.  xmlns="http://www.w3.org/2000/svg"
  1467.  width="23"
  1468.  height="24"
  1469.  fill="none"
  1470.  viewBox="0 0 23 24"
  1471. >
  1472.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1473.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1474. </svg>
  1475.  
  1476.        </div>
  1477.      
  1478.        </button>
  1479.      
  1480.    
  1481.  
  1482.    <div
  1483.      class="
  1484.        site-header-main-content
  1485.        
  1486.      "
  1487.    >
  1488.      <div class="site-header-logo">
  1489.        <a
  1490.          class="site-logo"
  1491.          href="/">
  1492.          
  1493.            
  1494.            
  1495.  
  1496.            
  1497.  
  1498.  
  1499.  
  1500.  <img loading="lazy"
  1501.    
  1502.      src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
  1503.    
  1504.    alt=""
  1505.  
  1506.    
  1507.      data-rimg
  1508.      srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
  1509.    
  1510.  
  1511.    class="site-logo-image"
  1512.    style="
  1513.        object-fit:cover;object-position:50.0% 50.0%;
  1514.      
  1515. "
  1516.    
  1517.  >
  1518.  
  1519.  
  1520.  
  1521.  
  1522.          
  1523.        </a>
  1524.      </div>
  1525.  
  1526.      
  1527.  
  1528.  
  1529.  
  1530.  
  1531.  
  1532. <div class="live-search" data-live-search><form
  1533.    class="
  1534.      live-search-form
  1535.      form-fields-inline
  1536.      
  1537.    "
  1538.    action="/search"
  1539.    method="get"
  1540.    role="search"
  1541.    aria-label="Product"
  1542.    data-live-search-form
  1543.  >
  1544.    <div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
  1545.          <select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
  1546.            
  1547.            <option value="" selected>All categories</option>
  1548.            <option value="" disabled>------</option>
  1549.            
  1550.              
  1551.  
  1552. <option value="product_type:AC Adapter">AC Adapter</option>
  1553. <option value="product_type:AC Adapters">AC Adapters</option>
  1554. <option value="product_type:Accessories">Accessories</option>
  1555. <option value="product_type:Adapter Card">Adapter Card</option>
  1556. <option value="product_type:Antennas">Antennas</option>
  1557. <option value="product_type:Appliances &gt; Fans">Appliances > Fans</option>
  1558. <option value="product_type:Batteries">Batteries</option>
  1559. <option value="product_type:Battery">Battery</option>
  1560. <option value="product_type:Bezels Cases &amp; Covers">Bezels Cases & Covers</option>
  1561. <option value="product_type:Boards">Boards</option>
  1562. <option value="product_type:Cables">Cables</option>
  1563. <option value="product_type:Cases Covers &amp; Bezels">Cases Covers & Bezels</option>
  1564. <option value="product_type:Connectors">Connectors</option>
  1565. <option value="product_type:DC Jack Cables">DC Jack Cables</option>
  1566. <option value="product_type:DC Jacks">DC Jacks</option>
  1567. <option value="product_type:DC Power Cable">DC Power Cable</option>
  1568. <option value="product_type:Docking Station">Docking Station</option>
  1569. <option value="product_type:Drives">Drives</option>
  1570. <option value="product_type:Fans">Fans</option>
  1571. <option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
  1572. <option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
  1573. <option value="product_type:Hard Drives">Hard Drives</option>
  1574. <option value="product_type:Hinges">Hinges</option>
  1575. <option value="product_type:Keyboards">Keyboards</option>
  1576. <option value="product_type:Memory">Memory</option>
  1577. <option value="product_type:Misc">Misc</option>
  1578. <option value="product_type:Motherboards">Motherboards</option>
  1579. <option value="product_type:Network Cards">Network Cards</option>
  1580. <option value="product_type:Optical Cables">Optical Cables</option>
  1581. <option value="product_type:Optical Drives">Optical Drives</option>
  1582. <option value="product_type:Palmrests">Palmrests</option>
  1583. <option value="product_type:Parts">Parts</option>
  1584. <option value="product_type:Phone Parts">Phone Parts</option>
  1585. <option value="product_type:Power Supplies">Power Supplies</option>
  1586. <option value="product_type:POWER SUPPLY">POWER SUPPLY</option>
  1587. <option value="product_type:Printer Parts">Printer Parts</option>
  1588. <option value="product_type:Screens">Screens</option>
  1589. <option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
  1590. <option value="product_type:Screws">Screws</option>
  1591. <option value="product_type:Server Parts">Server Parts</option>
  1592. <option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
  1593. <option value="product_type:Speakers">Speakers</option>
  1594. <option value="product_type:Tablet Parts">Tablet Parts</option>
  1595. <option value="product_type:Touchpads">Touchpads</option>
  1596. <option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
  1597. <option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
  1598.            
  1599.          </select>
  1600.          <label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
  1601. </label>
  1602.          <svg
  1603.  aria-hidden="true"
  1604.  focusable="false"
  1605.  role="presentation"
  1606.  width="8"
  1607.  height="6"
  1608.  viewBox="0 0 8 6"
  1609.  fill="none"
  1610.  xmlns="http://www.w3.org/2000/svg"
  1611.  class="icon-chevron-down"
  1612. >
  1613. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1614. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1615. </svg>
  1616.  
  1617.        </span><input
  1618.        class="form-field-input live-search-form-field"
  1619.        type="text"
  1620.        name="q"
  1621.        aria-label="Search"
  1622.        placeholder="What are you looking for?"
  1623.        
  1624.        autocomplete="off"
  1625.        data-live-search-input
  1626.      >
  1627.      <button
  1628.        class="live-search-takeover-cancel"
  1629.        type="button"
  1630.        data-live-search-takeover-cancel>
  1631.        Cancel
  1632.      </button>
  1633.  
  1634.      <button
  1635.        class="live-search-button"
  1636.        type="submit"
  1637.        aria-label="Search"
  1638.        data-live-search-submit
  1639.      >
  1640.        <span class="search-icon search-icon--inactive">
  1641.          <svg
  1642.  aria-hidden="true"
  1643.  focusable="false"
  1644.  role="presentation"
  1645.  xmlns="http://www.w3.org/2000/svg"
  1646.  width="23"
  1647.  height="24"
  1648.  fill="none"
  1649.  viewBox="0 0 23 24"
  1650. >
  1651.  <path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
  1652.  <circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
  1653. </svg>
  1654.  
  1655.        </span>
  1656.        <span class="search-icon search-icon--active">
  1657.          <svg
  1658.  aria-hidden="true"
  1659.  focusable="false"
  1660.  role="presentation"
  1661.  width="26"
  1662.  height="26"
  1663.  viewBox="0 0 26 26"
  1664.  xmlns="http://www.w3.org/2000/svg"
  1665. >
  1666.  <g fill-rule="nonzero" fill="currentColor">
  1667.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  1668.  </g>
  1669. </svg>
  1670.        </span>
  1671.      </button>
  1672.    </div>
  1673.  
  1674.    <div class="search-flydown" data-live-search-flydown>
  1675.      <div class="search-flydown--placeholder" data-live-search-placeholder>
  1676.        <div class="search-flydown--product-items">
  1677.          
  1678.            <a class="search-flydown--product search-flydown--product" href="#">
  1679.              
  1680.                <div class="search-flydown--product-image">
  1681.                  <svg class="placeholder--image placeholder--content-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  1682.                </div>
  1683.              
  1684.  
  1685.              <div class="search-flydown--product-text">
  1686.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1687.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1688.              </div>
  1689.            </a>
  1690.          
  1691.            <a class="search-flydown--product search-flydown--product" href="#">
  1692.              
  1693.                <div class="search-flydown--product-image">
  1694.                  <svg class="placeholder--image placeholder--content-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  1695.                </div>
  1696.              
  1697.  
  1698.              <div class="search-flydown--product-text">
  1699.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1700.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1701.              </div>
  1702.            </a>
  1703.          
  1704.            <a class="search-flydown--product search-flydown--product" href="#">
  1705.              
  1706.                <div class="search-flydown--product-image">
  1707.                  <svg class="placeholder--image placeholder--content-image" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 525.5 525.5"><path d="M324.5 212.7H203c-1.6 0-2.8 1.3-2.8 2.8V308c0 1.6 1.3 2.8 2.8 2.8h121.6c1.6 0 2.8-1.3 2.8-2.8v-92.5c0-1.6-1.3-2.8-2.9-2.8zm1.1 95.3c0 .6-.5 1.1-1.1 1.1H203c-.6 0-1.1-.5-1.1-1.1v-92.5c0-.6.5-1.1 1.1-1.1h121.6c.6 0 1.1.5 1.1 1.1V308z"/><path d="M210.4 299.5H240v.1s.1 0 .2-.1h75.2v-76.2h-105v76.2zm1.8-7.2l20-20c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l1.5 1.5 16.8 16.8c-12.9 3.3-20.7 6.3-22.8 7.2h-27.7v-5.5zm101.5-10.1c-20.1 1.7-36.7 4.8-49.1 7.9l-16.9-16.9 26.3-26.3c1.6-1.6 3.8-2.5 6.1-2.5s4.5.9 6.1 2.5l27.5 27.5v7.8zm-68.9 15.5c9.7-3.5 33.9-10.9 68.9-13.8v13.8h-68.9zm68.9-72.7v46.8l-26.2-26.2c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-26.3 26.3-.9-.9c-1.9-1.9-4.5-3-7.3-3s-5.4 1.1-7.3 3l-18.8 18.8V225h101.4z"/><path d="M232.8 254c4.6 0 8.3-3.7 8.3-8.3s-3.7-8.3-8.3-8.3-8.3 3.7-8.3 8.3 3.7 8.3 8.3 8.3zm0-14.9c3.6 0 6.6 2.9 6.6 6.6s-2.9 6.6-6.6 6.6-6.6-2.9-6.6-6.6 3-6.6 6.6-6.6z"/></svg>
  1708.                </div>
  1709.              
  1710.  
  1711.              <div class="search-flydown--product-text">
  1712.                <span class="search-flydown--product-title placeholder--content-text"></span>
  1713.                <span class="search-flydown--product-price placeholder--content-text"></span>
  1714.              </div>
  1715.            </a>
  1716.          
  1717.        </div>
  1718.      </div>
  1719.  
  1720.      <div
  1721.        class="
  1722.          search-flydown--results
  1723.          
  1724.        "
  1725.        data-live-search-results
  1726.      ></div>
  1727.  
  1728.      
  1729.    </div>
  1730.  </form>
  1731. </div>
  1732.  
  1733.  
  1734.      
  1735.    </div>
  1736.  
  1737.    <div class="site-header-right">
  1738.      <ul class="site-header-actions" data-header-actions>
  1739.  
  1740.    
  1741.      <li class="site-header-actions__account-link">
  1742.        <a
  1743.          class="site-header_account-link-anchor"
  1744.          href="/account/login"
  1745.        >
  1746.          <span class="site-header__account-icon">
  1747.            
  1748.  
  1749.  
  1750.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  1751.  
  1752.          </span>
  1753.          
  1754.          <span class="site-header_account-link-text">
  1755.            Login
  1756.          </span>
  1757.        </a>
  1758.      </li>
  1759.    
  1760.  
  1761. </ul>
  1762.  
  1763.  
  1764.      <div class="site-header-cart">
  1765.        <a class="site-header-cart--button" href="/cart">
  1766.          <span
  1767.            class="site-header-cart--count "
  1768.            data-header-cart-count="">
  1769.          </span>
  1770.          <span class="site-header-cart-icon site-header-cart-icon--svg">
  1771.            
  1772.              
  1773.  
  1774.  
  1775.            <svg width="25" height="24" viewBox="0 0 25 24" fill="currentColor" xmlns="http://www.w3.org/2000/svg">      <path fill-rule="evenodd" clip-rule="evenodd" d="M1 0C0.447715 0 0 0.447715 0 1C0 1.55228 0.447715 2 1 2H1.33877H1.33883C1.61048 2.00005 2.00378 2.23945 2.10939 2.81599L2.10937 2.816L2.11046 2.82171L5.01743 18.1859C5.12011 18.7286 5.64325 19.0852 6.18591 18.9826C6.21078 18.9779 6.23526 18.9723 6.25933 18.9658C6.28646 18.968 6.31389 18.9692 6.34159 18.9692H18.8179H18.8181C19.0302 18.9691 19.2141 18.9765 19.4075 18.9842L19.4077 18.9842C19.5113 18.9884 19.6175 18.9926 19.7323 18.9959C20.0255 19.0043 20.3767 19.0061 20.7177 18.9406C21.08 18.871 21.4685 18.7189 21.8028 18.3961C22.1291 18.081 22.3266 17.6772 22.4479 17.2384C22.4569 17.2058 22.4642 17.1729 22.4699 17.1396L23.944 8.46865C24.2528 7.20993 23.2684 5.99987 21.9896 6H21.9894H4.74727L4.07666 2.45562L4.07608 2.4525C3.83133 1.12381 2.76159 8.49962e-05 1.33889 0H1.33883H1ZM5.12568 8L6.8227 16.9692H18.8178H18.8179C19.0686 16.9691 19.3257 16.9793 19.5406 16.9877L19.5413 16.9877C19.633 16.9913 19.7171 16.9947 19.7896 16.9967C20.0684 17.0047 20.2307 16.9976 20.3403 16.9766C20.3841 16.9681 20.4059 16.96 20.4151 16.9556C20.4247 16.9443 20.4639 16.8918 20.5077 16.7487L21.9794 8.09186C21.9842 8.06359 21.9902 8.03555 21.9974 8.0078C21.9941 8.00358 21.9908 8.00108 21.989 8H5.12568ZM20.416 16.9552C20.4195 16.9534 20.4208 16.9524 20.4205 16.9523C20.4204 16.9523 20.4199 16.9525 20.4191 16.953L20.416 16.9552ZM10.8666 22.4326C10.8666 23.2982 10.195 24 9.36658 24C8.53815 24 7.86658 23.2982 7.86658 22.4326C7.86658 21.567 8.53815 20.8653 9.36658 20.8653C10.195 20.8653 10.8666 21.567 10.8666 22.4326ZM18.0048 24C18.8332 24 19.5048 23.2982 19.5048 22.4326C19.5048 21.567 18.8332 20.8653 18.0048 20.8653C17.1763 20.8653 16.5048 21.567 16.5048 22.4326C16.5048 23.2982 17.1763 24 18.0048 24Z" fill="currentColor"/>    </svg>                                                                                                        
  1776.  
  1777.            
  1778.          </span>
  1779.          <span class="visually-hidden">View cart</span>
  1780.        </a>
  1781.      </div>
  1782.    </div>
  1783.  </div>
  1784.  
  1785.  <div
  1786.    class="
  1787.      site-navigation-wrapper
  1788.      
  1789.        site-navigation--has-actions
  1790.      
  1791.      
  1792.        site-header--full-width
  1793.      
  1794.    "
  1795.    data-site-navigation
  1796.    id="site-header-nav"
  1797.  >
  1798.    <nav
  1799.      class="site-navigation"
  1800.      aria-label="Main"
  1801.    >
  1802.      
  1803.  
  1804.  
  1805.  
  1806.  
  1807. <ul
  1808.  class="navmenu navmenu-depth-1"
  1809.  data-navmenu
  1810.  aria-label="Main Menu 02"
  1811. >
  1812.  
  1813.    
  1814.    
  1815.  
  1816.    
  1817.    
  1818.    
  1819.    
  1820. <li
  1821.      class="navmenu-item              navmenu-basic__item                  navmenu-id-home"
  1822.      
  1823.      
  1824.      
  1825.    >
  1826.      
  1827.        <a
  1828.      
  1829.        class="
  1830.          navmenu-link
  1831.          navmenu-link-depth-1
  1832.          
  1833.          navmenu-link-active
  1834.        "
  1835.        
  1836.          href="/"
  1837.        
  1838.      >
  1839.        Home
  1840.        
  1841.      
  1842.        </a>
  1843.      
  1844.  
  1845.      
  1846.      </details>
  1847.    </li>
  1848.  
  1849.    
  1850.    
  1851.  
  1852.    
  1853.    
  1854.    
  1855.    
  1856. <li
  1857.      class="navmenu-item                    navmenu-item-parent                  navmenu-meganav__item-parent                    navmenu-id-shop"
  1858.      
  1859.        data-navmenu-meganav-trigger
  1860.        data-navmenu-meganav-type="multi-column-menu"
  1861.      
  1862.      data-navmenu-parent
  1863.      
  1864.    >
  1865.      
  1866.        <details data-navmenu-details>
  1867.        <summary
  1868.      
  1869.        class="
  1870.          navmenu-link
  1871.          navmenu-link-depth-1
  1872.          navmenu-link-parent
  1873.          
  1874.        "
  1875.        
  1876.          aria-haspopup="true"
  1877.          aria-expanded="false"
  1878.          data-href="/collections/all"
  1879.        
  1880.      >
  1881.        Shop
  1882.        
  1883.          <span
  1884.            class="navmenu-icon navmenu-icon-depth-1"
  1885.            data-navmenu-trigger
  1886.          >
  1887.            <svg
  1888.  aria-hidden="true"
  1889.  focusable="false"
  1890.  role="presentation"
  1891.  width="8"
  1892.  height="6"
  1893.  viewBox="0 0 8 6"
  1894.  fill="none"
  1895.  xmlns="http://www.w3.org/2000/svg"
  1896.  class="icon-chevron-down"
  1897. >
  1898. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1899. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  1900. </svg>
  1901.  
  1902.          </span>
  1903.        
  1904.      
  1905.        </summary>
  1906.      
  1907.  
  1908.      
  1909.        
  1910.            
  1911.  
  1912.  
  1913.  
  1914.  
  1915.  
  1916.  
  1917.  
  1918. <div
  1919.  class="navmenu-submenu  navmenu-meganav  navmenu-meganav--desktop"
  1920.  data-navmenu-submenu
  1921.  data-meganav-menu
  1922.  data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
  1923. >
  1924.  <div class="navmenu-meganav-wrapper navmenu-multi-column-items">
  1925.    <ul class="navmenu navmenu-depth-2 multi-column-count-5">
  1926.      
  1927.        
  1928.          <li class="navmenu-item">
  1929.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  1930.              Laptop Components
  1931.            </a>
  1932.            <ul>
  1933.            
  1934.              <li class="navmenu-item">
  1935.                <a href="/collections/ac-adapters" class="navmenu-link">
  1936.                  AC Adapters
  1937.                </a>
  1938.              </li>
  1939.            
  1940.              <li class="navmenu-item">
  1941.                <a href="/collections/batteries" class="navmenu-link">
  1942.                  Batteries
  1943.                </a>
  1944.              </li>
  1945.            
  1946.              <li class="navmenu-item">
  1947.                <a href="/collections/cases-covers-bezels" class="navmenu-link">
  1948.                  Bezels Cases & Covers
  1949.                </a>
  1950.              </li>
  1951.            
  1952.              <li class="navmenu-item">
  1953.                <a href="/collections/boards" class="navmenu-link">
  1954.                  Boards
  1955.                </a>
  1956.              </li>
  1957.            
  1958.              <li class="navmenu-item">
  1959.                <a href="/collections/cables" class="navmenu-link">
  1960.                  Cables
  1961.                </a>
  1962.              </li>
  1963.            
  1964.              <li class="navmenu-item">
  1965.                <a href="/collections/dc-jack-cables" class="navmenu-link">
  1966.                  DC Jack Cables
  1967.                </a>
  1968.              </li>
  1969.            
  1970.              <li class="navmenu-item">
  1971.                <a href="/collections/fans" class="navmenu-link">
  1972.                  Fans
  1973.                </a>
  1974.              </li>
  1975.            
  1976.              <li class="navmenu-item">
  1977.                <a href="/collections/hard-drive-brackets" class="navmenu-link">
  1978.                  Hard Drive Brackets
  1979.                </a>
  1980.              </li>
  1981.            
  1982.              <li class="navmenu-item">
  1983.                <a href="/collections/laptop-hard-drive" class="navmenu-link">
  1984.                  Hard Drives
  1985.                </a>
  1986.              </li>
  1987.            
  1988.              <li class="navmenu-item">
  1989.                <a href="/collections/laptop-case-parts" class="navmenu-link">
  1990.                  - Laptop Case Parts
  1991.                </a>
  1992.              </li>
  1993.            
  1994.              <li class="navmenu-item">
  1995.                <a href="/collections/hinges" class="navmenu-link">
  1996.                  Hinges
  1997.                </a>
  1998.              </li>
  1999.            
  2000.              <li class="navmenu-item">
  2001.                <a href="/collections/laptop-case" class="navmenu-link">
  2002.                  Laptop Case
  2003.                </a>
  2004.              </li>
  2005.            
  2006.              <li class="navmenu-item">
  2007.                <a href="/collections/laptop-cover" class="navmenu-link">
  2008.                  Laptop Cover
  2009.                </a>
  2010.              </li>
  2011.            
  2012.              <li class="navmenu-item">
  2013.                <a href="/collections/thermal-printer" class="navmenu-link">
  2014.                  Thermal Printer
  2015.                </a>
  2016.              </li>
  2017.            
  2018.            </ul>
  2019.          </li>
  2020.        
  2021.      
  2022.        
  2023.          <li class="navmenu-item">
  2024.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  2025.              .....
  2026.            </a>
  2027.            <ul>
  2028.            
  2029.              <li class="navmenu-item">
  2030.                <a href="/collections/keyboards-1" class="navmenu-link">
  2031.                  Keyboards
  2032.                </a>
  2033.              </li>
  2034.            
  2035.              <li class="navmenu-item">
  2036.                <a href="/collections/acer-keyboard" class="navmenu-link">
  2037.                  - Acer keyboard
  2038.                </a>
  2039.              </li>
  2040.            
  2041.              <li class="navmenu-item">
  2042.                <a href="/collections/asus-keyboard" class="navmenu-link">
  2043.                  - Asus keyboards
  2044.                </a>
  2045.              </li>
  2046.            
  2047.              <li class="navmenu-item">
  2048.                <a href="/collections/dell-keyboard" class="navmenu-link">
  2049.                  - Dell keyboard
  2050.                </a>
  2051.              </li>
  2052.            
  2053.              <li class="navmenu-item">
  2054.                <a href="/collections/lenovo-keyboard" class="navmenu-link">
  2055.                  - Lenovo keyboard
  2056.                </a>
  2057.              </li>
  2058.            
  2059.              <li class="navmenu-item">
  2060.                <a href="/collections/hp-keyboard" class="navmenu-link">
  2061.                  - Hp Keyboard
  2062.                </a>
  2063.              </li>
  2064.            
  2065.              <li class="navmenu-item">
  2066.                <a href="/collections/backlit-keyboard" class="navmenu-link">
  2067.                  - Backlit Keyboards
  2068.                </a>
  2069.              </li>
  2070.            
  2071.              <li class="navmenu-item">
  2072.                <a href="/collections/memory" class="navmenu-link">
  2073.                  Memory
  2074.                </a>
  2075.              </li>
  2076.            
  2077.              <li class="navmenu-item">
  2078.                <a href="/collections/motherboards" class="navmenu-link">
  2079.                  Motherboards
  2080.                </a>
  2081.              </li>
  2082.            
  2083.              <li class="navmenu-item">
  2084.                <a href="/collections/optical-drives" class="navmenu-link">
  2085.                  Optical Drives
  2086.                </a>
  2087.              </li>
  2088.            
  2089.              <li class="navmenu-item">
  2090.                <a href="/collections/power-supplies" class="navmenu-link">
  2091.                  Power Supplies
  2092.                </a>
  2093.              </li>
  2094.            
  2095.              <li class="navmenu-item">
  2096.                <a href="/collections/screens" class="navmenu-link">
  2097.                  Screens
  2098.                </a>
  2099.              </li>
  2100.            
  2101.              <li class="navmenu-item">
  2102.                <a href="/collections/touch-screen-laptop" class="navmenu-link">
  2103.                  - Touch Screen Laptop
  2104.                </a>
  2105.              </li>
  2106.            
  2107.              <li class="navmenu-item">
  2108.                <a href="/collections/screens-touch-digitizers" class="navmenu-link">
  2109.                  Screens - Touch Digitizers
  2110.                </a>
  2111.              </li>
  2112.            
  2113.              <li class="navmenu-item">
  2114.                <a href="/collections/speakers" class="navmenu-link">
  2115.                  Speakers
  2116.                </a>
  2117.              </li>
  2118.            
  2119.              <li class="navmenu-item">
  2120.                <a href="/collections/touchpads" class="navmenu-link">
  2121.                  Touchpads
  2122.                </a>
  2123.              </li>
  2124.            
  2125.            </ul>
  2126.          </li>
  2127.        
  2128.      
  2129.        
  2130.          <li class="navmenu-item">
  2131.            <a href="/collections/all" class="navmenu-link navmenu-link-parent">
  2132.              Other Components
  2133.            </a>
  2134.            <ul>
  2135.            
  2136.              <li class="navmenu-item">
  2137.                <a href="/collections/accessories" class="navmenu-link">
  2138.                  Accessories
  2139.                </a>
  2140.              </li>
  2141.            
  2142.              <li class="navmenu-item">
  2143.                <a href="/collections/phone-parts" class="navmenu-link">
  2144.                  Phone Parts
  2145.                </a>
  2146.              </li>
  2147.            
  2148.              <li class="navmenu-item">
  2149.                <a href="/collections/printer-parts" class="navmenu-link">
  2150.                  Printer Parts
  2151.                </a>
  2152.              </li>
  2153.            
  2154.              <li class="navmenu-item">
  2155.                <a href="/collections/server-parts" class="navmenu-link">
  2156.                  Server Parts
  2157.                </a>
  2158.              </li>
  2159.            
  2160.              <li class="navmenu-item">
  2161.                <a href="/collections/tablet-parts" class="navmenu-link">
  2162.                  Tablet Parts
  2163.                </a>
  2164.              </li>
  2165.            
  2166.            </ul>
  2167.          </li>
  2168.        
  2169.      
  2170.    </ul>
  2171.  </div>
  2172. </div>
  2173.  
  2174.          
  2175.      
  2176.      </details>
  2177.    </li>
  2178.  
  2179.    
  2180.    
  2181.  
  2182.    
  2183.    
  2184.    
  2185.    
  2186. <li
  2187.      class="navmenu-item              navmenu-basic__item                  navmenu-id-about-us"
  2188.      
  2189.      
  2190.      
  2191.    >
  2192.      
  2193.        <a
  2194.      
  2195.        class="
  2196.          navmenu-link
  2197.          navmenu-link-depth-1
  2198.          
  2199.          
  2200.        "
  2201.        
  2202.          href="/pages/about-us"
  2203.        
  2204.      >
  2205.        About Us
  2206.        
  2207.      
  2208.        </a>
  2209.      
  2210.  
  2211.      
  2212.      </details>
  2213.    </li>
  2214.  
  2215.    
  2216.    
  2217.  
  2218.    
  2219.    
  2220.    
  2221.    
  2222. <li
  2223.      class="navmenu-item              navmenu-basic__item                  navmenu-id-repair-centers"
  2224.      
  2225.      
  2226.      
  2227.    >
  2228.      
  2229.        <a
  2230.      
  2231.        class="
  2232.          navmenu-link
  2233.          navmenu-link-depth-1
  2234.          
  2235.          
  2236.        "
  2237.        
  2238.          href="/pages/store-locator"
  2239.        
  2240.      >
  2241.        Repair Centers
  2242.        
  2243.      
  2244.        </a>
  2245.      
  2246.  
  2247.      
  2248.      </details>
  2249.    </li>
  2250.  
  2251.    
  2252.    
  2253.  
  2254.    
  2255.    
  2256.    
  2257.    
  2258. <li
  2259.      class="navmenu-item              navmenu-basic__item                  navmenu-id-parts-request"
  2260.      
  2261.      
  2262.      
  2263.    >
  2264.      
  2265.        <a
  2266.      
  2267.        class="
  2268.          navmenu-link
  2269.          navmenu-link-depth-1
  2270.          
  2271.          
  2272.        "
  2273.        
  2274.          href="/pages/part-request"
  2275.        
  2276.      >
  2277.        Parts Request
  2278.        
  2279.      
  2280.        </a>
  2281.      
  2282.  
  2283.      
  2284.      </details>
  2285.    </li>
  2286.  
  2287.    
  2288.    
  2289.  
  2290.    
  2291.    
  2292.    
  2293.    
  2294. <li
  2295.      class="navmenu-item              navmenu-basic__item                  navmenu-id-shipping"
  2296.      
  2297.      
  2298.      
  2299.    >
  2300.      
  2301.        <a
  2302.      
  2303.        class="
  2304.          navmenu-link
  2305.          navmenu-link-depth-1
  2306.          
  2307.          
  2308.        "
  2309.        
  2310.          href="/pages/shipping"
  2311.        
  2312.      >
  2313.        Shipping
  2314.        
  2315.      
  2316.        </a>
  2317.      
  2318.  
  2319.      
  2320.      </details>
  2321.    </li>
  2322.  
  2323.    
  2324.    
  2325.  
  2326.    
  2327.    
  2328.    
  2329.    
  2330. <li
  2331.      class="navmenu-item              navmenu-basic__item                  navmenu-id-francais"
  2332.      
  2333.      
  2334.      
  2335.    >
  2336.      
  2337.        <a
  2338.      
  2339.        class="
  2340.          navmenu-link
  2341.          navmenu-link-depth-1
  2342.          
  2343.          
  2344.        "
  2345.        
  2346.          href="/pages/francais"
  2347.        
  2348.      >
  2349.        Français
  2350.        
  2351.      
  2352.        </a>
  2353.      
  2354.  
  2355.      
  2356.      </details>
  2357.    </li>
  2358.  
  2359. </ul>
  2360.  
  2361.  
  2362.      
  2363.    </nav>
  2364.  </div>
  2365.  
  2366.  <div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
  2367.  <div class="mobile-nav-panel" data-mobile-nav-panel>
  2368.  
  2369.    <ul class="site-header-actions" data-header-actions>
  2370.  
  2371.    
  2372.      <li class="site-header-actions__account-link">
  2373.        <a
  2374.          class="site-header_account-link-anchor"
  2375.          href="/account/login"
  2376.        >
  2377.          <span class="site-header__account-icon">
  2378.            
  2379.  
  2380.  
  2381.    <svg class="icon-account "    aria-hidden="true"    focusable="false"    role="presentation"    xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 26" fill="none" xmlns="http://www.w3.org/2000/svg">      <path d="M11.3336 14.4447C14.7538 14.4447 17.5264 11.6417 17.5264 8.18392C17.5264 4.72616 14.7538 1.9231 11.3336 1.9231C7.91347 1.9231 5.14087 4.72616 5.14087 8.18392C5.14087 11.6417 7.91347 14.4447 11.3336 14.4447Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>      <path d="M20.9678 24.0769C19.5098 20.0278 15.7026 17.3329 11.4404 17.3329C7.17822 17.3329 3.37107 20.0278 1.91309 24.0769" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>    </svg>                                                                                                                
  2382.  
  2383.          </span>
  2384.          
  2385.          <span class="site-header_account-link-text">
  2386.            Login
  2387.          </span>
  2388.        </a>
  2389.      </li>
  2390.    
  2391.  
  2392. </ul>
  2393.  
  2394.  
  2395.    <a
  2396.      class="mobile-nav-close"
  2397.      href="#site-header-nav"
  2398.      data-mobile-nav-close>
  2399.      <svg
  2400.  aria-hidden="true"
  2401.  focusable="false"
  2402.  role="presentation"
  2403.  xmlns="http://www.w3.org/2000/svg"
  2404.  width="13"
  2405.  height="13"
  2406.  viewBox="0 0 13 13"
  2407. >
  2408.  <path fill="currentColor" fill-rule="evenodd" d="M5.306 6.5L0 1.194 1.194 0 6.5 5.306 11.806 0 13 1.194 7.694 6.5 13 11.806 11.806 13 6.5 7.694 1.194 13 0 11.806 5.306 6.5z"/>
  2409. </svg>
  2410.      <span class="visually-hidden">Close</span>
  2411.    </a>
  2412.  
  2413.    <div class="mobile-nav-content" data-mobile-nav-content>
  2414.      
  2415.  
  2416.  
  2417.  
  2418.  
  2419. <ul
  2420.  class="navmenu navmenu-depth-1"
  2421.  data-navmenu
  2422.  aria-label="Main Menu 02"
  2423. >
  2424.  
  2425.    
  2426.    
  2427.  
  2428.    
  2429.    
  2430.    
  2431. <li
  2432.      class="navmenu-item            navmenu-id-home"
  2433.      
  2434.    >
  2435.      <a
  2436.        class="navmenu-link  navmenu-link-active"
  2437.        href="/"
  2438.        
  2439.      >
  2440.        Home
  2441.      </a>
  2442.  
  2443.      
  2444.  
  2445.      
  2446.      
  2447.  
  2448.      
  2449.  
  2450.      
  2451.    </li>
  2452.  
  2453.    
  2454.    
  2455.  
  2456.    
  2457.    
  2458.    
  2459. <li
  2460.      class="navmenu-item      navmenu-item-parent      navmenu-id-shop"
  2461.      data-navmenu-parent
  2462.    >
  2463.      <a
  2464.        class="navmenu-link navmenu-link-parent "
  2465.        href="/collections/all"
  2466.        
  2467.          aria-haspopup="true"
  2468.          aria-expanded="false"
  2469.        
  2470.      >
  2471.        Shop
  2472.      </a>
  2473.  
  2474.      
  2475.        
  2476.  
  2477.  
  2478.  
  2479. <button
  2480.  class="navmenu-button"
  2481.  data-navmenu-trigger
  2482.  aria-expanded="false"
  2483. >
  2484.  <div class="navmenu-button-wrapper" tabindex="-1">
  2485.    <span class="navmenu-icon ">
  2486.      <svg
  2487.  aria-hidden="true"
  2488.  focusable="false"
  2489.  role="presentation"
  2490.  width="8"
  2491.  height="6"
  2492.  viewBox="0 0 8 6"
  2493.  fill="none"
  2494.  xmlns="http://www.w3.org/2000/svg"
  2495.  class="icon-chevron-down"
  2496. >
  2497. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2498. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2499. </svg>
  2500.  
  2501.    </span>
  2502.    <span class="visually-hidden">Shop</span>
  2503.  </div>
  2504. </button>
  2505.  
  2506.      
  2507.  
  2508.      
  2509.      
  2510.  
  2511.      
  2512.        
  2513.  
  2514.  
  2515.  
  2516.  
  2517.  
  2518.  
  2519.  
  2520.  
  2521.  
  2522.  
  2523.  
  2524.  
  2525. <ul
  2526.  class="
  2527.    navmenu
  2528.    navmenu-depth-2
  2529.    navmenu-submenu
  2530.    
  2531.  "
  2532.  data-navmenu
  2533.  data-accordion-content
  2534.  data-navmenu-submenu
  2535.  aria-label="Main Menu 02"
  2536. >
  2537.  
  2538.    
  2539.  
  2540.    
  2541.    
  2542.  
  2543.    
  2544.    
  2545.  
  2546.    
  2547.  
  2548.    
  2549. <li
  2550.        class="navmenu-item        navmenu-item-parent        navmenu-id-laptop-components"
  2551.        data-navmenu-parent
  2552.      >
  2553.        
  2554.          <a
  2555.            href="/collections/all"
  2556.        
  2557.          class="navmenu-link navmenu-link-parent "
  2558.          
  2559.            aria-haspopup="true"
  2560.            aria-expanded="false"
  2561.          
  2562.        >
  2563.          
  2564.          Laptop Components
  2565.  
  2566.        
  2567.          </a>
  2568.        
  2569.  
  2570.        
  2571.          
  2572.  
  2573.  
  2574.  
  2575. <button
  2576.  class="navmenu-button"
  2577.  data-navmenu-trigger
  2578.  aria-expanded="false"
  2579. >
  2580.  <div class="navmenu-button-wrapper" tabindex="-1">
  2581.    <span class="navmenu-icon navmenu-icon-depth-2">
  2582.      <svg
  2583.  aria-hidden="true"
  2584.  focusable="false"
  2585.  role="presentation"
  2586.  width="8"
  2587.  height="6"
  2588.  viewBox="0 0 8 6"
  2589.  fill="none"
  2590.  xmlns="http://www.w3.org/2000/svg"
  2591.  class="icon-chevron-down"
  2592. >
  2593. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2594. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  2595. </svg>
  2596.  
  2597.    </span>
  2598.    <span class="visually-hidden">Laptop Components</span>
  2599.  </div>
  2600. </button>
  2601.  
  2602.        
  2603.  
  2604.        
  2605.          
  2606.  
  2607.  
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616.  
  2617.  
  2618. <ul
  2619.  class="
  2620.    navmenu
  2621.    navmenu-depth-3
  2622.    navmenu-submenu
  2623.    
  2624.  "
  2625.  data-navmenu
  2626.  data-accordion-content
  2627.  data-navmenu-submenu
  2628.  aria-label="Main Menu 02"
  2629. >
  2630.  
  2631.    
  2632.  
  2633.    
  2634.    
  2635.  
  2636.    
  2637.    
  2638.  
  2639.    
  2640.  
  2641.    
  2642.      <li
  2643.        class="navmenu-item navmenu-id-ac-adapters"
  2644.      >
  2645.        <a
  2646.        class="
  2647.          navmenu-link
  2648.          navmenu-link-depth-3
  2649.          
  2650.        "
  2651.        href="/collections/ac-adapters"
  2652.        >
  2653.          
  2654.          AC Adapters
  2655. </a>
  2656.      </li>
  2657.    
  2658.  
  2659.    
  2660.  
  2661.    
  2662.    
  2663.  
  2664.    
  2665.    
  2666.  
  2667.    
  2668.  
  2669.    
  2670.      <li
  2671.        class="navmenu-item navmenu-id-batteries"
  2672.      >
  2673.        <a
  2674.        class="
  2675.          navmenu-link
  2676.          navmenu-link-depth-3
  2677.          
  2678.        "
  2679.        href="/collections/batteries"
  2680.        >
  2681.          
  2682.          Batteries
  2683. </a>
  2684.      </li>
  2685.    
  2686.  
  2687.    
  2688.  
  2689.    
  2690.    
  2691.  
  2692.    
  2693.    
  2694.  
  2695.    
  2696.  
  2697.    
  2698.      <li
  2699.        class="navmenu-item navmenu-id-bezels-cases-covers"
  2700.      >
  2701.        <a
  2702.        class="
  2703.          navmenu-link
  2704.          navmenu-link-depth-3
  2705.          
  2706.        "
  2707.        href="/collections/cases-covers-bezels"
  2708.        >
  2709.          
  2710.          Bezels Cases & Covers
  2711. </a>
  2712.      </li>
  2713.    
  2714.  
  2715.    
  2716.  
  2717.    
  2718.    
  2719.  
  2720.    
  2721.    
  2722.  
  2723.    
  2724.  
  2725.    
  2726.      <li
  2727.        class="navmenu-item navmenu-id-boards"
  2728.      >
  2729.        <a
  2730.        class="
  2731.          navmenu-link
  2732.          navmenu-link-depth-3
  2733.          
  2734.        "
  2735.        href="/collections/boards"
  2736.        >
  2737.          
  2738.          Boards
  2739. </a>
  2740.      </li>
  2741.    
  2742.  
  2743.    
  2744.  
  2745.    
  2746.    
  2747.  
  2748.    
  2749.    
  2750.  
  2751.    
  2752.  
  2753.    
  2754.      <li
  2755.        class="navmenu-item navmenu-id-cables"
  2756.      >
  2757.        <a
  2758.        class="
  2759.          navmenu-link
  2760.          navmenu-link-depth-3
  2761.          
  2762.        "
  2763.        href="/collections/cables"
  2764.        >
  2765.          
  2766.          Cables
  2767. </a>
  2768.      </li>
  2769.    
  2770.  
  2771.    
  2772.  
  2773.    
  2774.    
  2775.  
  2776.    
  2777.    
  2778.  
  2779.    
  2780.  
  2781.    
  2782.      <li
  2783.        class="navmenu-item navmenu-id-dc-jack-cables"
  2784.      >
  2785.        <a
  2786.        class="
  2787.          navmenu-link
  2788.          navmenu-link-depth-3
  2789.          
  2790.        "
  2791.        href="/collections/dc-jack-cables"
  2792.        >
  2793.          
  2794.          DC Jack Cables
  2795. </a>
  2796.      </li>
  2797.    
  2798.  
  2799.    
  2800.  
  2801.    
  2802.    
  2803.  
  2804.    
  2805.    
  2806.  
  2807.    
  2808.  
  2809.    
  2810.      <li
  2811.        class="navmenu-item navmenu-id-fans"
  2812.      >
  2813.        <a
  2814.        class="
  2815.          navmenu-link
  2816.          navmenu-link-depth-3
  2817.          
  2818.        "
  2819.        href="/collections/fans"
  2820.        >
  2821.          
  2822.          Fans
  2823. </a>
  2824.      </li>
  2825.    
  2826.  
  2827.    
  2828.  
  2829.    
  2830.    
  2831.  
  2832.    
  2833.    
  2834.  
  2835.    
  2836.  
  2837.    
  2838.      <li
  2839.        class="navmenu-item navmenu-id-hard-drive-brackets"
  2840.      >
  2841.        <a
  2842.        class="
  2843.          navmenu-link
  2844.          navmenu-link-depth-3
  2845.          
  2846.        "
  2847.        href="/collections/hard-drive-brackets"
  2848.        >
  2849.          
  2850.          Hard Drive Brackets
  2851. </a>
  2852.      </li>
  2853.    
  2854.  
  2855.    
  2856.  
  2857.    
  2858.    
  2859.  
  2860.    
  2861.    
  2862.  
  2863.    
  2864.  
  2865.    
  2866.      <li
  2867.        class="navmenu-item navmenu-id-hard-drives"
  2868.      >
  2869.        <a
  2870.        class="
  2871.          navmenu-link
  2872.          navmenu-link-depth-3
  2873.          
  2874.        "
  2875.        href="/collections/laptop-hard-drive"
  2876.        >
  2877.          
  2878.          Hard Drives
  2879. </a>
  2880.      </li>
  2881.    
  2882.  
  2883.    
  2884.  
  2885.    
  2886.    
  2887.  
  2888.    
  2889.    
  2890.  
  2891.    
  2892.  
  2893.    
  2894.      <li
  2895.        class="navmenu-item navmenu-id-laptop-case-parts"
  2896.      >
  2897.        <a
  2898.        class="
  2899.          navmenu-link
  2900.          navmenu-link-depth-3
  2901.          
  2902.        "
  2903.        href="/collections/laptop-case-parts"
  2904.        >
  2905.          
  2906.          - Laptop Case Parts
  2907. </a>
  2908.      </li>
  2909.    
  2910.  
  2911.    
  2912.  
  2913.    
  2914.    
  2915.  
  2916.    
  2917.    
  2918.  
  2919.    
  2920.  
  2921.    
  2922.      <li
  2923.        class="navmenu-item navmenu-id-hinges"
  2924.      >
  2925.        <a
  2926.        class="
  2927.          navmenu-link
  2928.          navmenu-link-depth-3
  2929.          
  2930.        "
  2931.        href="/collections/hinges"
  2932.        >
  2933.          
  2934.          Hinges
  2935. </a>
  2936.      </li>
  2937.    
  2938.  
  2939.    
  2940.  
  2941.    
  2942.    
  2943.  
  2944.    
  2945.    
  2946.  
  2947.    
  2948.  
  2949.    
  2950.      <li
  2951.        class="navmenu-item navmenu-id-laptop-case"
  2952.      >
  2953.        <a
  2954.        class="
  2955.          navmenu-link
  2956.          navmenu-link-depth-3
  2957.          
  2958.        "
  2959.        href="/collections/laptop-case"
  2960.        >
  2961.          
  2962.          Laptop Case
  2963. </a>
  2964.      </li>
  2965.    
  2966.  
  2967.    
  2968.  
  2969.    
  2970.    
  2971.  
  2972.    
  2973.    
  2974.  
  2975.    
  2976.  
  2977.    
  2978.      <li
  2979.        class="navmenu-item navmenu-id-laptop-cover"
  2980.      >
  2981.        <a
  2982.        class="
  2983.          navmenu-link
  2984.          navmenu-link-depth-3
  2985.          
  2986.        "
  2987.        href="/collections/laptop-cover"
  2988.        >
  2989.          
  2990.          Laptop Cover
  2991. </a>
  2992.      </li>
  2993.    
  2994.  
  2995.    
  2996.  
  2997.    
  2998.    
  2999.  
  3000.    
  3001.    
  3002.  
  3003.    
  3004.  
  3005.    
  3006.      <li
  3007.        class="navmenu-item navmenu-id-thermal-printer"
  3008.      >
  3009.        <a
  3010.        class="
  3011.          navmenu-link
  3012.          navmenu-link-depth-3
  3013.          
  3014.        "
  3015.        href="/collections/thermal-printer"
  3016.        >
  3017.          
  3018.          Thermal Printer
  3019. </a>
  3020.      </li>
  3021.    
  3022.  
  3023. </ul>
  3024.  
  3025.        
  3026.        
  3027.      </li>
  3028.    
  3029.  
  3030.    
  3031.  
  3032.    
  3033.    
  3034.  
  3035.    
  3036.    
  3037.  
  3038.    
  3039.  
  3040.    
  3041. <li
  3042.        class="navmenu-item        navmenu-item-parent        navmenu-id-"
  3043.        data-navmenu-parent
  3044.      >
  3045.        
  3046.          <a
  3047.            href="/collections/all"
  3048.        
  3049.          class="navmenu-link navmenu-link-parent "
  3050.          
  3051.            aria-haspopup="true"
  3052.            aria-expanded="false"
  3053.          
  3054.        >
  3055.          
  3056.          .....
  3057.  
  3058.        
  3059.          </a>
  3060.        
  3061.  
  3062.        
  3063.          
  3064.  
  3065.  
  3066.  
  3067. <button
  3068.  class="navmenu-button"
  3069.  data-navmenu-trigger
  3070.  aria-expanded="false"
  3071. >
  3072.  <div class="navmenu-button-wrapper" tabindex="-1">
  3073.    <span class="navmenu-icon navmenu-icon-depth-2">
  3074.      <svg
  3075.  aria-hidden="true"
  3076.  focusable="false"
  3077.  role="presentation"
  3078.  width="8"
  3079.  height="6"
  3080.  viewBox="0 0 8 6"
  3081.  fill="none"
  3082.  xmlns="http://www.w3.org/2000/svg"
  3083.  class="icon-chevron-down"
  3084. >
  3085. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3086. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3087. </svg>
  3088.  
  3089.    </span>
  3090.    <span class="visually-hidden">.....</span>
  3091.  </div>
  3092. </button>
  3093.  
  3094.        
  3095.  
  3096.        
  3097.          
  3098.  
  3099.  
  3100.  
  3101.  
  3102.  
  3103.  
  3104.  
  3105.  
  3106.  
  3107.  
  3108.  
  3109.  
  3110. <ul
  3111.  class="
  3112.    navmenu
  3113.    navmenu-depth-3
  3114.    navmenu-submenu
  3115.    
  3116.  "
  3117.  data-navmenu
  3118.  data-accordion-content
  3119.  data-navmenu-submenu
  3120.  aria-label="Main Menu 02"
  3121. >
  3122.  
  3123.    
  3124.  
  3125.    
  3126.    
  3127.  
  3128.    
  3129.    
  3130.  
  3131.    
  3132.  
  3133.    
  3134.      <li
  3135.        class="navmenu-item navmenu-id-keyboards"
  3136.      >
  3137.        <a
  3138.        class="
  3139.          navmenu-link
  3140.          navmenu-link-depth-3
  3141.          
  3142.        "
  3143.        href="/collections/keyboards-1"
  3144.        >
  3145.          
  3146.          Keyboards
  3147. </a>
  3148.      </li>
  3149.    
  3150.  
  3151.    
  3152.  
  3153.    
  3154.    
  3155.  
  3156.    
  3157.    
  3158.  
  3159.    
  3160.  
  3161.    
  3162.      <li
  3163.        class="navmenu-item navmenu-id-acer-keyboard"
  3164.      >
  3165.        <a
  3166.        class="
  3167.          navmenu-link
  3168.          navmenu-link-depth-3
  3169.          
  3170.        "
  3171.        href="/collections/acer-keyboard"
  3172.        >
  3173.          
  3174.          - Acer keyboard
  3175. </a>
  3176.      </li>
  3177.    
  3178.  
  3179.    
  3180.  
  3181.    
  3182.    
  3183.  
  3184.    
  3185.    
  3186.  
  3187.    
  3188.  
  3189.    
  3190.      <li
  3191.        class="navmenu-item navmenu-id-asus-keyboards"
  3192.      >
  3193.        <a
  3194.        class="
  3195.          navmenu-link
  3196.          navmenu-link-depth-3
  3197.          
  3198.        "
  3199.        href="/collections/asus-keyboard"
  3200.        >
  3201.          
  3202.          - Asus keyboards
  3203. </a>
  3204.      </li>
  3205.    
  3206.  
  3207.    
  3208.  
  3209.    
  3210.    
  3211.  
  3212.    
  3213.    
  3214.  
  3215.    
  3216.  
  3217.    
  3218.      <li
  3219.        class="navmenu-item navmenu-id-dell-keyboard"
  3220.      >
  3221.        <a
  3222.        class="
  3223.          navmenu-link
  3224.          navmenu-link-depth-3
  3225.          
  3226.        "
  3227.        href="/collections/dell-keyboard"
  3228.        >
  3229.          
  3230.          - Dell keyboard
  3231. </a>
  3232.      </li>
  3233.    
  3234.  
  3235.    
  3236.  
  3237.    
  3238.    
  3239.  
  3240.    
  3241.    
  3242.  
  3243.    
  3244.  
  3245.    
  3246.      <li
  3247.        class="navmenu-item navmenu-id-lenovo-keyboard"
  3248.      >
  3249.        <a
  3250.        class="
  3251.          navmenu-link
  3252.          navmenu-link-depth-3
  3253.          
  3254.        "
  3255.        href="/collections/lenovo-keyboard"
  3256.        >
  3257.          
  3258.          - Lenovo keyboard
  3259. </a>
  3260.      </li>
  3261.    
  3262.  
  3263.    
  3264.  
  3265.    
  3266.    
  3267.  
  3268.    
  3269.    
  3270.  
  3271.    
  3272.  
  3273.    
  3274.      <li
  3275.        class="navmenu-item navmenu-id-hp-keyboard"
  3276.      >
  3277.        <a
  3278.        class="
  3279.          navmenu-link
  3280.          navmenu-link-depth-3
  3281.          
  3282.        "
  3283.        href="/collections/hp-keyboard"
  3284.        >
  3285.          
  3286.          - Hp Keyboard
  3287. </a>
  3288.      </li>
  3289.    
  3290.  
  3291.    
  3292.  
  3293.    
  3294.    
  3295.  
  3296.    
  3297.    
  3298.  
  3299.    
  3300.  
  3301.    
  3302.      <li
  3303.        class="navmenu-item navmenu-id-backlit-keyboards"
  3304.      >
  3305.        <a
  3306.        class="
  3307.          navmenu-link
  3308.          navmenu-link-depth-3
  3309.          
  3310.        "
  3311.        href="/collections/backlit-keyboard"
  3312.        >
  3313.          
  3314.          - Backlit Keyboards
  3315. </a>
  3316.      </li>
  3317.    
  3318.  
  3319.    
  3320.  
  3321.    
  3322.    
  3323.  
  3324.    
  3325.    
  3326.  
  3327.    
  3328.  
  3329.    
  3330.      <li
  3331.        class="navmenu-item navmenu-id-memory"
  3332.      >
  3333.        <a
  3334.        class="
  3335.          navmenu-link
  3336.          navmenu-link-depth-3
  3337.          
  3338.        "
  3339.        href="/collections/memory"
  3340.        >
  3341.          
  3342.          Memory
  3343. </a>
  3344.      </li>
  3345.    
  3346.  
  3347.    
  3348.  
  3349.    
  3350.    
  3351.  
  3352.    
  3353.    
  3354.  
  3355.    
  3356.  
  3357.    
  3358.      <li
  3359.        class="navmenu-item navmenu-id-motherboards"
  3360.      >
  3361.        <a
  3362.        class="
  3363.          navmenu-link
  3364.          navmenu-link-depth-3
  3365.          
  3366.        "
  3367.        href="/collections/motherboards"
  3368.        >
  3369.          
  3370.          Motherboards
  3371. </a>
  3372.      </li>
  3373.    
  3374.  
  3375.    
  3376.  
  3377.    
  3378.    
  3379.  
  3380.    
  3381.    
  3382.  
  3383.    
  3384.  
  3385.    
  3386.      <li
  3387.        class="navmenu-item navmenu-id-optical-drives"
  3388.      >
  3389.        <a
  3390.        class="
  3391.          navmenu-link
  3392.          navmenu-link-depth-3
  3393.          
  3394.        "
  3395.        href="/collections/optical-drives"
  3396.        >
  3397.          
  3398.          Optical Drives
  3399. </a>
  3400.      </li>
  3401.    
  3402.  
  3403.    
  3404.  
  3405.    
  3406.    
  3407.  
  3408.    
  3409.    
  3410.  
  3411.    
  3412.  
  3413.    
  3414.      <li
  3415.        class="navmenu-item navmenu-id-power-supplies"
  3416.      >
  3417.        <a
  3418.        class="
  3419.          navmenu-link
  3420.          navmenu-link-depth-3
  3421.          
  3422.        "
  3423.        href="/collections/power-supplies"
  3424.        >
  3425.          
  3426.          Power Supplies
  3427. </a>
  3428.      </li>
  3429.    
  3430.  
  3431.    
  3432.  
  3433.    
  3434.    
  3435.  
  3436.    
  3437.    
  3438.  
  3439.    
  3440.  
  3441.    
  3442.      <li
  3443.        class="navmenu-item navmenu-id-screens"
  3444.      >
  3445.        <a
  3446.        class="
  3447.          navmenu-link
  3448.          navmenu-link-depth-3
  3449.          
  3450.        "
  3451.        href="/collections/screens"
  3452.        >
  3453.          
  3454.          Screens
  3455. </a>
  3456.      </li>
  3457.    
  3458.  
  3459.    
  3460.  
  3461.    
  3462.    
  3463.  
  3464.    
  3465.    
  3466.  
  3467.    
  3468.  
  3469.    
  3470.      <li
  3471.        class="navmenu-item navmenu-id-touch-screen-laptop"
  3472.      >
  3473.        <a
  3474.        class="
  3475.          navmenu-link
  3476.          navmenu-link-depth-3
  3477.          
  3478.        "
  3479.        href="/collections/touch-screen-laptop"
  3480.        >
  3481.          
  3482.          - Touch Screen Laptop
  3483. </a>
  3484.      </li>
  3485.    
  3486.  
  3487.    
  3488.  
  3489.    
  3490.    
  3491.  
  3492.    
  3493.    
  3494.  
  3495.    
  3496.  
  3497.    
  3498.      <li
  3499.        class="navmenu-item navmenu-id-screens-touch-digitizers"
  3500.      >
  3501.        <a
  3502.        class="
  3503.          navmenu-link
  3504.          navmenu-link-depth-3
  3505.          
  3506.        "
  3507.        href="/collections/screens-touch-digitizers"
  3508.        >
  3509.          
  3510.          Screens - Touch Digitizers
  3511. </a>
  3512.      </li>
  3513.    
  3514.  
  3515.    
  3516.  
  3517.    
  3518.    
  3519.  
  3520.    
  3521.    
  3522.  
  3523.    
  3524.  
  3525.    
  3526.      <li
  3527.        class="navmenu-item navmenu-id-speakers"
  3528.      >
  3529.        <a
  3530.        class="
  3531.          navmenu-link
  3532.          navmenu-link-depth-3
  3533.          
  3534.        "
  3535.        href="/collections/speakers"
  3536.        >
  3537.          
  3538.          Speakers
  3539. </a>
  3540.      </li>
  3541.    
  3542.  
  3543.    
  3544.  
  3545.    
  3546.    
  3547.  
  3548.    
  3549.    
  3550.  
  3551.    
  3552.  
  3553.    
  3554.      <li
  3555.        class="navmenu-item navmenu-id-touchpads"
  3556.      >
  3557.        <a
  3558.        class="
  3559.          navmenu-link
  3560.          navmenu-link-depth-3
  3561.          
  3562.        "
  3563.        href="/collections/touchpads"
  3564.        >
  3565.          
  3566.          Touchpads
  3567. </a>
  3568.      </li>
  3569.    
  3570.  
  3571. </ul>
  3572.  
  3573.        
  3574.        
  3575.      </li>
  3576.    
  3577.  
  3578.    
  3579.  
  3580.    
  3581.    
  3582.  
  3583.    
  3584.    
  3585.  
  3586.    
  3587.  
  3588.    
  3589. <li
  3590.        class="navmenu-item        navmenu-item-parent        navmenu-id-other-components"
  3591.        data-navmenu-parent
  3592.      >
  3593.        
  3594.          <a
  3595.            href="/collections/all"
  3596.        
  3597.          class="navmenu-link navmenu-link-parent "
  3598.          
  3599.            aria-haspopup="true"
  3600.            aria-expanded="false"
  3601.          
  3602.        >
  3603.          
  3604.          Other Components
  3605.  
  3606.        
  3607.          </a>
  3608.        
  3609.  
  3610.        
  3611.          
  3612.  
  3613.  
  3614.  
  3615. <button
  3616.  class="navmenu-button"
  3617.  data-navmenu-trigger
  3618.  aria-expanded="false"
  3619. >
  3620.  <div class="navmenu-button-wrapper" tabindex="-1">
  3621.    <span class="navmenu-icon navmenu-icon-depth-2">
  3622.      <svg
  3623.  aria-hidden="true"
  3624.  focusable="false"
  3625.  role="presentation"
  3626.  width="8"
  3627.  height="6"
  3628.  viewBox="0 0 8 6"
  3629.  fill="none"
  3630.  xmlns="http://www.w3.org/2000/svg"
  3631.  class="icon-chevron-down"
  3632. >
  3633. <path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3634. <path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
  3635. </svg>
  3636.  
  3637.    </span>
  3638.    <span class="visually-hidden">Other Components</span>
  3639.  </div>
  3640. </button>
  3641.  
  3642.        
  3643.  
  3644.        
  3645.          
  3646.  
  3647.  
  3648.  
  3649.  
  3650.  
  3651.  
  3652.  
  3653.  
  3654.  
  3655.  
  3656.  
  3657.  
  3658. <ul
  3659.  class="
  3660.    navmenu
  3661.    navmenu-depth-3
  3662.    navmenu-submenu
  3663.    
  3664.  "
  3665.  data-navmenu
  3666.  data-accordion-content
  3667.  data-navmenu-submenu
  3668.  aria-label="Main Menu 02"
  3669. >
  3670.  
  3671.    
  3672.  
  3673.    
  3674.    
  3675.  
  3676.    
  3677.    
  3678.  
  3679.    
  3680.  
  3681.    
  3682.      <li
  3683.        class="navmenu-item navmenu-id-accessories"
  3684.      >
  3685.        <a
  3686.        class="
  3687.          navmenu-link
  3688.          navmenu-link-depth-3
  3689.          
  3690.        "
  3691.        href="/collections/accessories"
  3692.        >
  3693.          
  3694.          Accessories
  3695. </a>
  3696.      </li>
  3697.    
  3698.  
  3699.    
  3700.  
  3701.    
  3702.    
  3703.  
  3704.    
  3705.    
  3706.  
  3707.    
  3708.  
  3709.    
  3710.      <li
  3711.        class="navmenu-item navmenu-id-phone-parts"
  3712.      >
  3713.        <a
  3714.        class="
  3715.          navmenu-link
  3716.          navmenu-link-depth-3
  3717.          
  3718.        "
  3719.        href="/collections/phone-parts"
  3720.        >
  3721.          
  3722.          Phone Parts
  3723. </a>
  3724.      </li>
  3725.    
  3726.  
  3727.    
  3728.  
  3729.    
  3730.    
  3731.  
  3732.    
  3733.    
  3734.  
  3735.    
  3736.  
  3737.    
  3738.      <li
  3739.        class="navmenu-item navmenu-id-printer-parts"
  3740.      >
  3741.        <a
  3742.        class="
  3743.          navmenu-link
  3744.          navmenu-link-depth-3
  3745.          
  3746.        "
  3747.        href="/collections/printer-parts"
  3748.        >
  3749.          
  3750.          Printer Parts
  3751. </a>
  3752.      </li>
  3753.    
  3754.  
  3755.    
  3756.  
  3757.    
  3758.    
  3759.  
  3760.    
  3761.    
  3762.  
  3763.    
  3764.  
  3765.    
  3766.      <li
  3767.        class="navmenu-item navmenu-id-server-parts"
  3768.      >
  3769.        <a
  3770.        class="
  3771.          navmenu-link
  3772.          navmenu-link-depth-3
  3773.          
  3774.        "
  3775.        href="/collections/server-parts"
  3776.        >
  3777.          
  3778.          Server Parts
  3779. </a>
  3780.      </li>
  3781.    
  3782.  
  3783.    
  3784.  
  3785.    
  3786.    
  3787.  
  3788.    
  3789.    
  3790.  
  3791.    
  3792.  
  3793.    
  3794.      <li
  3795.        class="navmenu-item navmenu-id-tablet-parts"
  3796.      >
  3797.        <a
  3798.        class="
  3799.          navmenu-link
  3800.          navmenu-link-depth-3
  3801.          
  3802.        "
  3803.        href="/collections/tablet-parts"
  3804.        >
  3805.          
  3806.          Tablet Parts
  3807. </a>
  3808.      </li>
  3809.    
  3810.  
  3811. </ul>
  3812.  
  3813.        
  3814.        
  3815.      </li>
  3816.    
  3817.  
  3818. </ul>
  3819.  
  3820.      
  3821.  
  3822.      
  3823.    </li>
  3824.  
  3825.    
  3826.    
  3827.  
  3828.    
  3829.    
  3830.    
  3831. <li
  3832.      class="navmenu-item            navmenu-id-about-us"
  3833.      
  3834.    >
  3835.      <a
  3836.        class="navmenu-link  "
  3837.        href="/pages/about-us"
  3838.        
  3839.      >
  3840.        About Us
  3841.      </a>
  3842.  
  3843.      
  3844.  
  3845.      
  3846.      
  3847.  
  3848.      
  3849.  
  3850.      
  3851.    </li>
  3852.  
  3853.    
  3854.    
  3855.  
  3856.    
  3857.    
  3858.    
  3859. <li
  3860.      class="navmenu-item            navmenu-id-repair-centers"
  3861.      
  3862.    >
  3863.      <a
  3864.        class="navmenu-link  "
  3865.        href="/pages/store-locator"
  3866.        
  3867.      >
  3868.        Repair Centers
  3869.      </a>
  3870.  
  3871.      
  3872.  
  3873.      
  3874.      
  3875.  
  3876.      
  3877.  
  3878.      
  3879.    </li>
  3880.  
  3881.    
  3882.    
  3883.  
  3884.    
  3885.    
  3886.    
  3887. <li
  3888.      class="navmenu-item            navmenu-id-parts-request"
  3889.      
  3890.    >
  3891.      <a
  3892.        class="navmenu-link  "
  3893.        href="/pages/part-request"
  3894.        
  3895.      >
  3896.        Parts Request
  3897.      </a>
  3898.  
  3899.      
  3900.  
  3901.      
  3902.      
  3903.  
  3904.      
  3905.  
  3906.      
  3907.    </li>
  3908.  
  3909.    
  3910.    
  3911.  
  3912.    
  3913.    
  3914.    
  3915. <li
  3916.      class="navmenu-item            navmenu-id-shipping"
  3917.      
  3918.    >
  3919.      <a
  3920.        class="navmenu-link  "
  3921.        href="/pages/shipping"
  3922.        
  3923.      >
  3924.        Shipping
  3925.      </a>
  3926.  
  3927.      
  3928.  
  3929.      
  3930.      
  3931.  
  3932.      
  3933.  
  3934.      
  3935.    </li>
  3936.  
  3937.    
  3938.    
  3939.  
  3940.    
  3941.    
  3942.    
  3943. <li
  3944.      class="navmenu-item            navmenu-id-francais"
  3945.      
  3946.    >
  3947.      <a
  3948.        class="navmenu-link  "
  3949.        href="/pages/francais"
  3950.        
  3951.      >
  3952.        Français
  3953.      </a>
  3954.  
  3955.      
  3956.  
  3957.      
  3958.      
  3959.  
  3960.      
  3961.  
  3962.      
  3963.    </li>
  3964.  
  3965. </ul>
  3966.  
  3967.  
  3968.      
  3969.    </div>
  3970.    <div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
  3971.  </div>
  3972.  
  3973.  <div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
  3974. </div>
  3975.  
  3976. </header>
  3977.  
  3978. </div>
  3979. <!-- END sections: header-group -->
  3980.  
  3981.    <div style="--background-color: #fff">
  3982.      
  3983.  
  3984.  
  3985.    </div>
  3986.  
  3987.    <div class="intersection-target" data-header-intersection-target></div>
  3988.    <div class="site-main-dimmer" data-site-main-dimmer></div>
  3989.    <main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
  3990.      <div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
  3991.  
  3992.  
  3993.  
  3994. <script type="application/pxs-animation-mapping+json">
  3995.  {
  3996.    "blocks": [".slideshow-slide"],
  3997.    "elements": [
  3998.      ".slideshow-slide__heading",
  3999.      ".slideshow-slide__subheading",
  4000.      ".slideshow-slide__text",
  4001.      ".slideshow-slide__button"
  4002.    ]
  4003.  }
  4004. </script>
  4005.  
  4006. <style data-shopify>
  4007.  #shopify-section-template--15492296147031__dynamic_slideshow {
  4008.    --autoplay-interval: 5s;
  4009.  }
  4010.  
  4011.  
  4012.    @media screen and (min-width: 720px) {
  4013.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  4014.        height: 38.291380625476734vw;
  4015.      }
  4016.    }
  4017.  
  4018.  
  4019.  
  4020.    @media screen and (max-width: 719px) {
  4021.      #shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
  4022.        
  4023.          height: 38.291380625476734vw;
  4024.        
  4025.      }
  4026.    }
  4027.  
  4028. </style>
  4029.  
  4030.  
  4031.  
  4032.  
  4033. <script
  4034.  type="application/json"
  4035.  data-section-type="pxs-slideshow"
  4036.  data-section-id="template--15492296147031__dynamic_slideshow"
  4037.  data-section-data
  4038. >
  4039.  {
  4040.    "enable_autoplay": true,
  4041.    "autoplay_interval": 5,
  4042.    "mobile_navigation_adjust": true,
  4043.    "transition_fade": null,
  4044.    "slide_attraction": null,
  4045.    "slide_friction": null,
  4046.    "next_text": "Next slide",
  4047.    "previous_text": "Previous slide"
  4048.  }
  4049. </script>
  4050.  
  4051. <section
  4052.  class="
  4053.    slideshow
  4054.    slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
  4055.  "
  4056.  aria-label="Slideshow"
  4057.  data-autoplay="true"
  4058.  data-autoplay-interval="5"
  4059.  data-banner="false"
  4060.  data-slideshow
  4061. ><div
  4062.    class="slideshow__wrapper "
  4063.    data-slideshow-wrapper
  4064.  >
  4065.  
  4066.  
  4067. <div
  4068.  class="slideshow-slide  "
  4069.  aria-label="Slide 1 of 5"
  4070.  data-text-color="#ffffff"
  4071.  tabindex="-1"
  4072.  data-slideshow-slide
  4073.  data-slide-index="0"
  4074.  
  4075. ><div
  4076.      class="
  4077.        slideshow-slide__image-wrapper
  4078.        
  4079.      "
  4080.      data-slide-image-wrapper
  4081.    >
  4082.  
  4083.  
  4084.    <noscript data-rimg-noscript>
  4085.      <img loading="lazy"
  4086.        
  4087.          src="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077"
  4088.        
  4089.  
  4090.        alt=""
  4091.        data-rimg="noscript"
  4092.        srcset="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077 1x"
  4093.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4094.        style="
  4095.        object-fit:cover;object-position:50.0% 50.0%;
  4096.      
  4097. "
  4098.        
  4099.      >
  4100.    </noscript>
  4101.  
  4102.  
  4103.  <img loading="lazy"
  4104.    
  4105.      src="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077"
  4106.    
  4107.    alt=""
  4108.  
  4109.    
  4110.      data-rimg="lazy"
  4111.      data-rimg-scale="1"
  4112.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_1_1_{size}.jpg?v=1698065077"
  4113.      data-rimg-max="1311x502"
  4114.      data-rimg-crop="false"
  4115.      
  4116.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='502'></svg>"
  4117.    
  4118.  
  4119.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4120.    style="
  4121.        object-fit:cover;object-position:50.0% 50.0%;
  4122.      
  4123. "
  4124.    
  4125.  >
  4126.  
  4127.  
  4128.  
  4129.  <div data-rimg-canvas></div>
  4130.  
  4131.  
  4132. <div
  4133.          class="
  4134.            slideshow-slide__overlay
  4135.            
  4136.          "
  4137.          style="
  4138.            
  4139.              background-color: #000000;
  4140.            
  4141.            opacity: 0.01;
  4142.          "
  4143.        ></div></div><div
  4144.    class="
  4145.      slideshow-slide__content
  4146.      slideshow-slide__content--1178f9e7-9dad-44d0-a34d-c79c188c7d40
  4147.      slideshow-slide__content--text-center
  4148.    "
  4149.    data-slide-content
  4150.  ></div>
  4151. </div>
  4152.  
  4153.  
  4154.  
  4155.  
  4156. <div
  4157.  class="slideshow-slide  "
  4158.  aria-label="Slide 2 of 5"
  4159.  data-text-color="#ffffff"
  4160.  tabindex="-1"
  4161.  data-slideshow-slide
  4162.  data-slide-index="1"
  4163.  
  4164. ><div
  4165.      class="
  4166.        slideshow-slide__image-wrapper
  4167.        
  4168.      "
  4169.      data-slide-image-wrapper
  4170.    >
  4171.  
  4172.  
  4173.    <noscript data-rimg-noscript>
  4174.      <img loading="lazy"
  4175.        
  4176.          src="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214"
  4177.        
  4178.  
  4179.        alt=""
  4180.        data-rimg="noscript"
  4181.        srcset="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214 1x"
  4182.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4183.        style="
  4184.        object-fit:cover;object-position:50.0% 50.0%;
  4185.      
  4186. "
  4187.        
  4188.      >
  4189.    </noscript>
  4190.  
  4191.  
  4192.  <img loading="lazy"
  4193.    
  4194.      src="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214"
  4195.    
  4196.    alt=""
  4197.  
  4198.    
  4199.      data-rimg="lazy"
  4200.      data-rimg-scale="1"
  4201.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner2_1_{size}.jpg?v=1698065214"
  4202.      data-rimg-max="1311x502"
  4203.      data-rimg-crop="false"
  4204.      
  4205.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='502'></svg>"
  4206.    
  4207.  
  4208.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4209.    style="
  4210.        object-fit:cover;object-position:50.0% 50.0%;
  4211.      
  4212. "
  4213.    
  4214.  >
  4215.  
  4216.  
  4217.  
  4218.  <div data-rimg-canvas></div>
  4219.  
  4220.  
  4221. <div
  4222.          class="
  4223.            slideshow-slide__overlay
  4224.            
  4225.          "
  4226.          style="
  4227.            
  4228.              background-color: #000000;
  4229.            
  4230.            opacity: 0.01;
  4231.          "
  4232.        ></div></div><div
  4233.    class="
  4234.      slideshow-slide__content
  4235.      slideshow-slide__content--ac4bf3fd-3c33-4016-99d1-6880934c327b
  4236.      slideshow-slide__content--text-center
  4237.    "
  4238.    data-slide-content
  4239.  ></div>
  4240. </div>
  4241.  
  4242.  
  4243.  
  4244.  
  4245. <div
  4246.  class="slideshow-slide  "
  4247.  aria-label="Slide 3 of 5"
  4248.  data-text-color="#ffffff"
  4249.  tabindex="-1"
  4250.  data-slideshow-slide
  4251.  data-slide-index="2"
  4252.  
  4253. ><div
  4254.      class="
  4255.        slideshow-slide__image-wrapper
  4256.        
  4257.      "
  4258.      data-slide-image-wrapper
  4259.    >
  4260.  
  4261.  
  4262.    <noscript data-rimg-noscript>
  4263.      <img loading="lazy"
  4264.        
  4265.          src="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121"
  4266.        
  4267.  
  4268.        alt=""
  4269.        data-rimg="noscript"
  4270.        srcset="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121 1x"
  4271.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4272.        style="
  4273.        object-fit:cover;object-position:50.0% 50.0%;
  4274.      
  4275. "
  4276.        
  4277.      >
  4278.    </noscript>
  4279.  
  4280.  
  4281.  <img loading="lazy"
  4282.    
  4283.      src="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121"
  4284.    
  4285.    alt=""
  4286.  
  4287.    
  4288.      data-rimg="lazy"
  4289.      data-rimg-scale="1"
  4290.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_1_2_{size}.jpg?v=1698322121"
  4291.      data-rimg-max="1800x1000"
  4292.      data-rimg-crop="false"
  4293.      
  4294.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4295.    
  4296.  
  4297.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4298.    style="
  4299.        object-fit:cover;object-position:50.0% 50.0%;
  4300.      
  4301. "
  4302.    
  4303.  >
  4304.  
  4305.  
  4306.  
  4307.  <div data-rimg-canvas></div>
  4308.  
  4309.  
  4310. <div
  4311.          class="
  4312.            slideshow-slide__overlay
  4313.            
  4314.          "
  4315.          style="
  4316.            
  4317.              background-color: #000000;
  4318.            
  4319.            opacity: 0.01;
  4320.          "
  4321.        ></div></div><div
  4322.    class="
  4323.      slideshow-slide__content
  4324.      slideshow-slide__content--ad941428-8cfc-4ad3-b90b-31270322336f
  4325.      slideshow-slide__content--text-center
  4326.    "
  4327.    data-slide-content
  4328.  ></div>
  4329. </div>
  4330.  
  4331.  
  4332.  
  4333.  
  4334. <div
  4335.  class="slideshow-slide  "
  4336.  aria-label="Slide 4 of 5"
  4337.  data-text-color="#ffffff"
  4338.  tabindex="-1"
  4339.  data-slideshow-slide
  4340.  data-slide-index="3"
  4341.  
  4342. ><div
  4343.      class="
  4344.        slideshow-slide__image-wrapper
  4345.        
  4346.      "
  4347.      data-slide-image-wrapper
  4348.    >
  4349.  
  4350.  
  4351.    <noscript data-rimg-noscript>
  4352.      <img loading="lazy"
  4353.        
  4354.          src="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301"
  4355.        
  4356.  
  4357.        alt=""
  4358.        data-rimg="noscript"
  4359.        srcset="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301 1x"
  4360.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4361.        style="
  4362.        object-fit:cover;object-position:50.0% 50.0%;
  4363.      
  4364. "
  4365.        
  4366.      >
  4367.    </noscript>
  4368.  
  4369.  
  4370.  <img loading="lazy"
  4371.    
  4372.      src="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301"
  4373.    
  4374.    alt=""
  4375.  
  4376.    
  4377.      data-rimg="lazy"
  4378.      data-rimg-scale="1"
  4379.      data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_3_{size}.jpg?v=1698322301"
  4380.      data-rimg-max="1311x728"
  4381.      data-rimg-crop="false"
  4382.      
  4383.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='728'></svg>"
  4384.    
  4385.  
  4386.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4387.    style="
  4388.        object-fit:cover;object-position:50.0% 50.0%;
  4389.      
  4390. "
  4391.    
  4392.  >
  4393.  
  4394.  
  4395.  
  4396.  <div data-rimg-canvas></div>
  4397.  
  4398.  
  4399. <div
  4400.          class="
  4401.            slideshow-slide__overlay
  4402.            
  4403.          "
  4404.          style="
  4405.            
  4406.              background-color: #000000;
  4407.            
  4408.            opacity: 0.01;
  4409.          "
  4410.        ></div></div><div
  4411.    class="
  4412.      slideshow-slide__content
  4413.      slideshow-slide__content--dd3cc52a-bc2b-4750-a92f-b9606057a8e9
  4414.      slideshow-slide__content--text-center
  4415.    "
  4416.    data-slide-content
  4417.  ></div>
  4418. </div>
  4419.  
  4420.  
  4421.  
  4422.  
  4423. <div
  4424.  class="slideshow-slide  "
  4425.  aria-label="Slide 5 of 5"
  4426.  data-text-color="#ffffff"
  4427.  tabindex="-1"
  4428.  data-slideshow-slide
  4429.  data-slide-index="4"
  4430.  
  4431. ><div
  4432.      class="
  4433.        slideshow-slide__image-wrapper
  4434.        
  4435.      "
  4436.      data-slide-image-wrapper
  4437.    >
  4438.  
  4439.  
  4440.    <noscript data-rimg-noscript>
  4441.      <img loading="lazy"
  4442.        
  4443.          src="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924"
  4444.        
  4445.  
  4446.        alt=""
  4447.        data-rimg="noscript"
  4448.        srcset="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924 1x"
  4449.        class="slideshow-slide__image slideshow-slide__image--desktop"
  4450.        style="
  4451.        object-fit:cover;object-position:50.0% 50.0%;
  4452.      
  4453. "
  4454.        
  4455.      >
  4456.    </noscript>
  4457.  
  4458.  
  4459.  <img loading="lazy"
  4460.    
  4461.      src="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924"
  4462.    
  4463.    alt=""
  4464.  
  4465.    
  4466.      data-rimg="lazy"
  4467.      data-rimg-scale="1"
  4468.      data-rimg-template="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_{size}.jpg?v=1732359924"
  4469.      data-rimg-max="1800x1000"
  4470.      data-rimg-crop="false"
  4471.      
  4472.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
  4473.    
  4474.  
  4475.    class="slideshow-slide__image slideshow-slide__image--desktop"
  4476.    style="
  4477.        object-fit:cover;object-position:50.0% 50.0%;
  4478.      
  4479. "
  4480.    
  4481.  >
  4482.  
  4483.  
  4484.  
  4485.  <div data-rimg-canvas></div>
  4486.  
  4487.  
  4488. <div
  4489.          class="
  4490.            slideshow-slide__overlay
  4491.            
  4492.          "
  4493.          style="
  4494.            
  4495.              background-color: #000000;
  4496.            
  4497.            opacity: 0.01;
  4498.          "
  4499.        ></div></div><div
  4500.    class="
  4501.      slideshow-slide__content
  4502.      slideshow-slide__content--f26f4364-dc20-416d-bc23-018a813c8b54
  4503.      slideshow-slide__content--text-center
  4504.    "
  4505.    data-slide-content
  4506.  ></div>
  4507. </div>
  4508.  
  4509. </div><ol
  4510.      class="slideshow-pagination"
  4511.      data-slideshow-pagination
  4512.    ><li class="slideshow-pagination__dot">
  4513.          <button
  4514.            class="slideshow-pagination__button"
  4515.            data-selected="true"
  4516.            data-slide-button="0"
  4517.          >
  4518.            
  4519.              
  4520.    <div class="circle-timer">
  4521.      <svg class="circle-timer__svg">
  4522.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4523.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4524.      </svg>
  4525.    </div>
  4526.  
  4527.            
  4528.            <span class="visually-hidden">Slide 1</span>
  4529.          </button>
  4530.        </li><li class="slideshow-pagination__dot">
  4531.          <button
  4532.            class="slideshow-pagination__button"
  4533.            data-selected="false"
  4534.            data-slide-button="1"
  4535.          >
  4536.            
  4537.              
  4538.    <div class="circle-timer">
  4539.      <svg class="circle-timer__svg">
  4540.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4541.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4542.      </svg>
  4543.    </div>
  4544.  
  4545.            
  4546.            <span class="visually-hidden">Slide 2</span>
  4547.          </button>
  4548.        </li><li class="slideshow-pagination__dot">
  4549.          <button
  4550.            class="slideshow-pagination__button"
  4551.            data-selected="false"
  4552.            data-slide-button="2"
  4553.          >
  4554.            
  4555.              
  4556.    <div class="circle-timer">
  4557.      <svg class="circle-timer__svg">
  4558.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4559.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4560.      </svg>
  4561.    </div>
  4562.  
  4563.            
  4564.            <span class="visually-hidden">Slide 3</span>
  4565.          </button>
  4566.        </li><li class="slideshow-pagination__dot">
  4567.          <button
  4568.            class="slideshow-pagination__button"
  4569.            data-selected="false"
  4570.            data-slide-button="3"
  4571.          >
  4572.            
  4573.              
  4574.    <div class="circle-timer">
  4575.      <svg class="circle-timer__svg">
  4576.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4577.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4578.      </svg>
  4579.    </div>
  4580.  
  4581.            
  4582.            <span class="visually-hidden">Slide 4</span>
  4583.          </button>
  4584.        </li><li class="slideshow-pagination__dot">
  4585.          <button
  4586.            class="slideshow-pagination__button"
  4587.            data-selected="false"
  4588.            data-slide-button="4"
  4589.          >
  4590.            
  4591.              
  4592.    <div class="circle-timer">
  4593.      <svg class="circle-timer__svg">
  4594.        <circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
  4595.        <circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
  4596.      </svg>
  4597.    </div>
  4598.  
  4599.            
  4600.            <span class="visually-hidden">Slide 5</span>
  4601.          </button>
  4602.        </li></ol><div
  4603.    class="slideshow__current-slide visually-hidden"
  4604.    aria-live="polite"
  4605.    aria-atomic="true"
  4606.    data-slide-counter
  4607.    data-counter-template="Slide {{ count }} of {{ total }}"
  4608.  >
  4609.  </div>
  4610. </section>
  4611.  
  4612.  
  4613.  
  4614. </div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
  4615.  type="application/json"
  4616.  data-section-id="template--15492296147031__dynamic_featured_collection"
  4617.  data-section-type="dynamic-featured-collection"
  4618. ></script>
  4619.  
  4620. <script type="application/pxs-animation-mapping+json">
  4621.  {
  4622.    "blocks": [
  4623.      ".featured-collection__title-card"
  4624.    ],
  4625.    "elements": [
  4626.      ".featured-collection__title-card-pre-heading",
  4627.      ".featured-collection__title-card-heading",
  4628.      ".featured-collection__title-card-button"
  4629.    ]
  4630.  }
  4631. </script>
  4632.  
  4633.  
  4634.  
  4635.  
  4636.  
  4637.  
  4638.  
  4639.  
  4640.  
  4641.  
  4642.  
  4643.  
  4644.  
  4645.  
  4646.  
  4647. <style data-shopify>
  4648.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
  4649.    color: ;
  4650.  }
  4651.  
  4652.  #shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
  4653.    background-color: ;
  4654.    opacity: 0.0;
  4655.  }
  4656.  
  4657.  @media screen and (min-width: 1080px) {
  4658.    #shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
  4659.      
  4660.    }
  4661.  }
  4662. </style>
  4663.  
  4664.  
  4665.  
  4666.  
  4667.  
  4668.  
  4669.  
  4670.  
  4671.  
  4672.  
  4673.  
  4674.  
  4675.  
  4676.  
  4677.  
  4678. <section class="featured-collection__container" data-featured-collection>
  4679.  
  4680.    <h2 class="home-section--title">
  4681.      Shop The Best Selling
  4682.    </h2>
  4683.  
  4684.  
  4685.  <ul
  4686.    class="home-section--content featured-collection__content"
  4687.    data-content
  4688.    data-layout="slideshow"
  4689.  >
  4690.    
  4691.  
  4692.    
  4693.      
  4694.  
  4695.  
  4696.  
  4697.  
  4698.  
  4699.  
  4700.  
  4701.  
  4702.  
  4703.  
  4704.  
  4705.  
  4706.  
  4707.  
  4708.  
  4709.  
  4710.  
  4711.  
  4712.  
  4713.  
  4714.  
  4715.  
  4716.  
  4717.  
  4718.  
  4719.  
  4720.  
  4721.  
  4722.  
  4723.  
  4724.  
  4725.  
  4726.    
  4727.  
  4728.  
  4729.  
  4730. <li
  4731.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  4732.  data-product-item
  4733.  data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4734.  
  4735. >
  4736.  <div class="productitem" data-product-item-content>
  4737.    
  4738.    
  4739.    
  4740.    
  4741.  
  4742.    
  4743.  
  4744.    
  4745.  
  4746.    <div class="productitem__container">
  4747.      
  4748.  
  4749.      <div class="productitem__image-container">
  4750.        <a target="_blank"
  4751.          class="productitem--image-link"
  4752.          href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4753.          aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  4754.          tabindex="-1"
  4755.          data-product-page-link
  4756.        >
  4757.          <figure
  4758.            class="productitem--image"
  4759.            data-product-item-image
  4760.            
  4761.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  4762.            
  4763.          >
  4764.            
  4765.              
  4766.              
  4767.  
  4768.  
  4769.    <noscript data-rimg-noscript>
  4770.      <img loading="lazy"
  4771.        
  4772.          src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4773.        
  4774.  
  4775.        alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4776.        data-rimg="noscript"
  4777.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033 1x, //laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_998x998.jpg?v=1729018033 1.95x"
  4778.        class="productitem--image-primary"
  4779.        
  4780.        
  4781.      >
  4782.    </noscript>
  4783.  
  4784.  
  4785.  <img loading="lazy"
  4786.    
  4787.      src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
  4788.    
  4789.    alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14&quot; Lcd Screen"
  4790.  
  4791.    
  4792.      data-rimg="lazy"
  4793.      data-rimg-scale="1"
  4794.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
  4795.      data-rimg-max="1000x1000"
  4796.      data-rimg-crop="false"
  4797.      
  4798.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  4799.    
  4800.  
  4801.    class="productitem--image-primary"
  4802.    
  4803.    
  4804.  >
  4805.  
  4806.  
  4807.  
  4808.  <div data-rimg-canvas></div>
  4809.  
  4810.  
  4811.            
  4812.  
  4813.            
  4814.  
  4815.  
  4816.  
  4817.  
  4818.  
  4819.  
  4820.  
  4821.  
  4822.  
  4823.  
  4824.  
  4825.  
  4826.  
  4827.  
  4828.  
  4829.  
  4830.  
  4831.  
  4832.  
  4833.  
  4834.  
  4835.  
  4836.  
  4837.  
  4838.  
  4839.  
  4840.  
  4841.          </figure>
  4842.        </a>
  4843.      </div><div class="productitem--info">
  4844.        
  4845.          
  4846.  
  4847.        
  4848.  
  4849.        
  4850.          
  4851.  
  4852.  
  4853.  
  4854.  
  4855.  
  4856.  
  4857.  
  4858.  
  4859.  
  4860.  
  4861.  
  4862.  
  4863.  
  4864.  
  4865.  
  4866.  
  4867.  
  4868.  
  4869.  
  4870.  
  4871.  
  4872.  
  4873.  
  4874.  
  4875.  
  4876.  
  4877.  
  4878.  
  4879.  
  4880.  
  4881. <div class="price productitem__price ">
  4882.  
  4883.    <div
  4884.      class="price__compare-at visible"
  4885.      data-price-compare-container
  4886.    >
  4887.  
  4888.      
  4889.        <span class="money price__original" data-price-original></span>
  4890.      
  4891.    </div>
  4892.  
  4893.  
  4894.    
  4895.      
  4896.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  4897.        
  4898.          <span class="visually-hidden">Original price</span>
  4899.          <span class="money price__compare-at--min" data-price-compare-min>
  4900.            $129.99
  4901.          </span>
  4902.          -
  4903.          <span class="visually-hidden">Original price</span>
  4904.          <span class="money price__compare-at--max" data-price-compare-max>
  4905.            $129.99
  4906.          </span>
  4907.        
  4908.      </div>
  4909.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  4910.        <span class="visually-hidden">Original price</span>
  4911.        <span class="money price__compare-at--single" data-price-compare>
  4912.          
  4913.        </span>
  4914.      </div>
  4915.    
  4916.  
  4917.  
  4918.  <div class="price__current price__current--emphasize " data-price-container>
  4919.  
  4920.    
  4921.  
  4922.    
  4923.      
  4924.      
  4925.      <span class="money" data-price>
  4926.        $129.99
  4927.      </span>
  4928.    
  4929.    
  4930.  </div>
  4931.  
  4932.  
  4933.    
  4934.    <div class="price__current--hidden" data-current-price-range-hidden>
  4935.      
  4936.        <span class="money price__current--min" data-price-min>$129.99</span>
  4937.        -
  4938.        <span class="money price__current--max" data-price-max>$129.99</span>
  4939.      
  4940.    </div>
  4941.    <div class="price__current--hidden" data-current-price-hidden>
  4942.      <span class="visually-hidden">Current price</span>
  4943.      <span class="money" data-price>
  4944.        $129.99
  4945.      </span>
  4946.    </div>
  4947.  
  4948.  
  4949.  
  4950.    
  4951.    
  4952.    
  4953.    
  4954.  
  4955.    <div
  4956.      class="
  4957.        productitem__unit-price
  4958.        hidden
  4959.      "
  4960.      data-unit-price
  4961.    >
  4962.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  4963.    </div>
  4964.  
  4965.  
  4966.  
  4967. </div>
  4968.  
  4969.  
  4970.        
  4971.  
  4972.        <h2 class="productitem--title">
  4973.          <a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
  4974.            14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
  4975.          </a>
  4976.        </h2>
  4977.  
  4978.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  4979.        <div class="star_container 3959626498135"></div>
  4980.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  4981.  
  4982.        
  4983.          
  4984.            <span class="productitem--vendor">
  4985.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  4986.            </span>
  4987.          
  4988.        
  4989.  
  4990.        
  4991.  
  4992.        
  4993.          
  4994.            <div class="productitem__stock-level">
  4995.              <!--
  4996.  
  4997.  
  4998.  
  4999.  
  5000.  
  5001.  
  5002.  
  5003. <div class="product-stock-level-wrapper" >
  5004.  
  5005.    <span class="
  5006.  product-stock-level
  5007.  product-stock-level--continue-selling
  5008.  
  5009. ">
  5010.      
  5011.  
  5012.      <span class="product-stock-level__text">
  5013.        
  5014.        <div class="product-stock-level__badge-text">
  5015.          
  5016.  
  5017.    In stock
  5018.  
  5019.  
  5020.        </div>
  5021.      </span>
  5022.    </span>
  5023.  
  5024. </div>
  5025. -->
  5026.              
  5027.  
  5028.  
  5029.    
  5030.      <b style="color:green">In stock</b>
  5031.    
  5032.  
  5033.  
  5034.  
  5035.  
  5036.  
  5037.  
  5038.  
  5039.            </div>
  5040.          
  5041.  
  5042.          
  5043.            
  5044.          
  5045.        
  5046.  
  5047.        
  5048.          <div class="productitem--description">
  5049.            <p>
  5050. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  5051.  
  5052. Compatible Part #s: B140HAN03.3, KW8T4
  5053.  
  5054. Compatible Models:
  5055. Dell Latitude 74...</p>
  5056.  
  5057.            
  5058.              <a
  5059.                href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
  5060.                class="productitem--link"
  5061.                data-product-page-link
  5062.              >
  5063.                View full details
  5064.              </a>
  5065.            
  5066.          </div>
  5067.        
  5068.      </div>
  5069.  
  5070.      
  5071.        
  5072.          
  5073.          
  5074.          
  5075.  
  5076.          
  5077.          
  5078.  
  5079.          
  5080.  
  5081.          
  5082.  
  5083.          <div class="productitem--actions" data-product-actions>
  5084.            <div class="productitem--listview-price">
  5085.              
  5086.  
  5087.  
  5088.  
  5089.  
  5090.  
  5091.  
  5092.  
  5093.  
  5094.  
  5095.  
  5096.  
  5097.  
  5098.  
  5099.  
  5100.  
  5101.  
  5102.  
  5103.  
  5104.  
  5105.  
  5106.  
  5107.  
  5108.  
  5109.  
  5110.  
  5111.  
  5112.  
  5113.  
  5114.  
  5115.  
  5116. <div class="price productitem__price ">
  5117.  
  5118.    <div
  5119.      class="price__compare-at visible"
  5120.      data-price-compare-container
  5121.    >
  5122.  
  5123.      
  5124.        <span class="money price__original" data-price-original></span>
  5125.      
  5126.    </div>
  5127.  
  5128.  
  5129.    
  5130.      
  5131.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5132.        
  5133.          <span class="visually-hidden">Original price</span>
  5134.          <span class="money price__compare-at--min" data-price-compare-min>
  5135.            $129.99
  5136.          </span>
  5137.          -
  5138.          <span class="visually-hidden">Original price</span>
  5139.          <span class="money price__compare-at--max" data-price-compare-max>
  5140.            $129.99
  5141.          </span>
  5142.        
  5143.      </div>
  5144.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5145.        <span class="visually-hidden">Original price</span>
  5146.        <span class="money price__compare-at--single" data-price-compare>
  5147.          
  5148.        </span>
  5149.      </div>
  5150.    
  5151.  
  5152.  
  5153.  <div class="price__current price__current--emphasize " data-price-container>
  5154.  
  5155.    
  5156.  
  5157.    
  5158.      
  5159.      
  5160.      <span class="money" data-price>
  5161.        $129.99
  5162.      </span>
  5163.    
  5164.    
  5165.  </div>
  5166.  
  5167.  
  5168.    
  5169.    <div class="price__current--hidden" data-current-price-range-hidden>
  5170.      
  5171.        <span class="money price__current--min" data-price-min>$129.99</span>
  5172.        -
  5173.        <span class="money price__current--max" data-price-max>$129.99</span>
  5174.      
  5175.    </div>
  5176.    <div class="price__current--hidden" data-current-price-hidden>
  5177.      <span class="visually-hidden">Current price</span>
  5178.      <span class="money" data-price>
  5179.        $129.99
  5180.      </span>
  5181.    </div>
  5182.  
  5183.  
  5184.  
  5185.    
  5186.    
  5187.    
  5188.    
  5189.  
  5190.    <div
  5191.      class="
  5192.        productitem__unit-price
  5193.        hidden
  5194.      "
  5195.      data-unit-price
  5196.    >
  5197.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5198.    </div>
  5199.  
  5200.  
  5201.  
  5202. </div>
  5203.  
  5204.  
  5205.            </div>
  5206.  
  5207.            <div class="productitem--listview-badge">
  5208.              
  5209.  
  5210.  
  5211.  
  5212.  
  5213.  
  5214.  
  5215.  
  5216.  
  5217.  
  5218.  
  5219.  
  5220.  
  5221.  
  5222.  
  5223.  
  5224.  
  5225.  
  5226.  
  5227.  
  5228.  
  5229.  
  5230.  
  5231.  
  5232.  
  5233.  
  5234.  
  5235.  
  5236.            </div>
  5237.  
  5238.            
  5239.              <div
  5240.                class="
  5241.                  productitem--action
  5242.                  quickshop-button
  5243.                  
  5244.                "
  5245.              >
  5246.                <button
  5247.                  class="productitem--action-trigger button-secondary"
  5248.                  data-quickshop-full
  5249.                  
  5250.                  
  5251.                  type="button"
  5252.                >
  5253.                  Quick shop
  5254.                </button>
  5255.              </div>
  5256.            
  5257.  
  5258.            
  5259.              <div
  5260.                class="
  5261.                  productitem--action
  5262.                  atc--button
  5263.                  
  5264.                "
  5265.              >
  5266.                <button
  5267.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5268.                  type="button"
  5269.                  aria-label="Add to cart"
  5270.                  
  5271.                    data-quick-buy
  5272.                  
  5273.                  data-variant-id="29564289744983"
  5274.                  
  5275.                >
  5276.                  <span class="atc-button--text">
  5277.                    Add to cart
  5278.                  </span>
  5279.                  <span class="atc-button--icon"><svg
  5280.  aria-hidden="true"
  5281.  focusable="false"
  5282.  role="presentation"
  5283.  width="26"
  5284.  height="26"
  5285.  viewBox="0 0 26 26"
  5286.  xmlns="http://www.w3.org/2000/svg"
  5287. >
  5288.  <g fill-rule="nonzero" fill="currentColor">
  5289.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  5290.  </g>
  5291. </svg></span>
  5292.                </button>
  5293.              </div>
  5294.            
  5295.          </div>
  5296.        
  5297.      
  5298.    </div>
  5299.  </div>
  5300.  
  5301.  
  5302.    <script type="application/json" data-quick-buy-settings>
  5303.      {
  5304.        "cart_redirection": true,
  5305.        "money_format": "${{amount}}"
  5306.      }
  5307.    </script>
  5308.  
  5309. </li>
  5310.    
  5311.      
  5312.  
  5313.  
  5314.  
  5315.  
  5316.  
  5317.  
  5318.  
  5319.  
  5320.  
  5321.  
  5322.  
  5323.  
  5324.  
  5325.  
  5326.  
  5327.  
  5328.  
  5329.  
  5330.  
  5331.  
  5332.  
  5333.  
  5334.  
  5335.  
  5336.  
  5337.  
  5338.  
  5339.  
  5340.  
  5341.  
  5342.  
  5343.  
  5344.    
  5345.  
  5346.  
  5347.  
  5348. <li
  5349.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  5350.  data-product-item
  5351.  data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5352.  
  5353. >
  5354.  <div class="productitem" data-product-item-content>
  5355.    
  5356.    
  5357.    
  5358.    
  5359.  
  5360.    
  5361.  
  5362.    
  5363.  
  5364.    <div class="productitem__container">
  5365.      
  5366.  
  5367.      <div class="productitem__image-container">
  5368.        <a target="_blank"
  5369.          class="productitem--image-link"
  5370.          href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5371.          aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5372.          tabindex="-1"
  5373.          data-product-page-link
  5374.        >
  5375.          <figure
  5376.            class="productitem--image"
  5377.            data-product-item-image
  5378.            
  5379.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  5380.            
  5381.          >
  5382.            
  5383.              
  5384.              
  5385.  
  5386.  
  5387.    <noscript data-rimg-noscript>
  5388.      <img loading="lazy"
  5389.        
  5390.          src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5391.        
  5392.  
  5393.        alt=""
  5394.        data-rimg="noscript"
  5395.        srcset="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872 1x, //laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_599x599.jpg?v=1648053872 1.17x"
  5396.        class="productitem--image-primary"
  5397.        
  5398.        
  5399.      >
  5400.    </noscript>
  5401.  
  5402.  
  5403.  <img loading="lazy"
  5404.    
  5405.      src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
  5406.    
  5407.    alt=""
  5408.  
  5409.    
  5410.      data-rimg="lazy"
  5411.      data-rimg-scale="1"
  5412.      data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
  5413.      data-rimg-max="600x600"
  5414.      data-rimg-crop="false"
  5415.      
  5416.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  5417.    
  5418.  
  5419.    class="productitem--image-primary"
  5420.    
  5421.    
  5422.  >
  5423.  
  5424.  
  5425.  
  5426.  <div data-rimg-canvas></div>
  5427.  
  5428.  
  5429.            
  5430.  
  5431.            
  5432.  
  5433.  
  5434.  
  5435.  
  5436.  
  5437.  
  5438.  
  5439.  
  5440.  
  5441.  
  5442.  
  5443.  
  5444.  
  5445.  
  5446.  
  5447.  
  5448.  
  5449.  
  5450.  
  5451.  
  5452.  
  5453.  
  5454.  
  5455.  
  5456.  
  5457.  
  5458.  
  5459.          </figure>
  5460.        </a>
  5461.      </div><div class="productitem--info">
  5462.        
  5463.          
  5464.  
  5465.        
  5466.  
  5467.        
  5468.          
  5469.  
  5470.  
  5471.  
  5472.  
  5473.  
  5474.  
  5475.  
  5476.  
  5477.  
  5478.  
  5479.  
  5480.  
  5481.  
  5482.  
  5483.  
  5484.  
  5485.  
  5486.  
  5487.  
  5488.  
  5489.  
  5490.  
  5491.  
  5492.  
  5493.  
  5494.  
  5495.  
  5496.  
  5497.  
  5498.  
  5499. <div class="price productitem__price ">
  5500.  
  5501.    <div
  5502.      class="price__compare-at visible"
  5503.      data-price-compare-container
  5504.    >
  5505.  
  5506.      
  5507.        <span class="money price__original" data-price-original></span>
  5508.      
  5509.    </div>
  5510.  
  5511.  
  5512.    
  5513.      
  5514.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5515.        
  5516.          <span class="visually-hidden">Original price</span>
  5517.          <span class="money price__compare-at--min" data-price-compare-min>
  5518.            $79.99
  5519.          </span>
  5520.          -
  5521.          <span class="visually-hidden">Original price</span>
  5522.          <span class="money price__compare-at--max" data-price-compare-max>
  5523.            $79.99
  5524.          </span>
  5525.        
  5526.      </div>
  5527.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5528.        <span class="visually-hidden">Original price</span>
  5529.        <span class="money price__compare-at--single" data-price-compare>
  5530.          
  5531.        </span>
  5532.      </div>
  5533.    
  5534.  
  5535.  
  5536.  <div class="price__current price__current--emphasize " data-price-container>
  5537.  
  5538.    
  5539.  
  5540.    
  5541.      
  5542.      
  5543.      <span class="money" data-price>
  5544.        $79.99
  5545.      </span>
  5546.    
  5547.    
  5548.  </div>
  5549.  
  5550.  
  5551.    
  5552.    <div class="price__current--hidden" data-current-price-range-hidden>
  5553.      
  5554.        <span class="money price__current--min" data-price-min>$79.99</span>
  5555.        -
  5556.        <span class="money price__current--max" data-price-max>$79.99</span>
  5557.      
  5558.    </div>
  5559.    <div class="price__current--hidden" data-current-price-hidden>
  5560.      <span class="visually-hidden">Current price</span>
  5561.      <span class="money" data-price>
  5562.        $79.99
  5563.      </span>
  5564.    </div>
  5565.  
  5566.  
  5567.  
  5568.    
  5569.    
  5570.    
  5571.    
  5572.  
  5573.    <div
  5574.      class="
  5575.        productitem__unit-price
  5576.        hidden
  5577.      "
  5578.      data-unit-price
  5579.    >
  5580.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5581.    </div>
  5582.  
  5583.  
  5584.  
  5585. </div>
  5586.  
  5587.  
  5588.        
  5589.  
  5590.        <h2 class="productitem--title">
  5591.          <a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
  5592.            20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
  5593.          </a>
  5594.        </h2>
  5595.  
  5596.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  5597.        <div class="star_container 3483510112343"></div>
  5598.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  5599.  
  5600.        
  5601.          
  5602.            <span class="productitem--vendor">
  5603.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  5604.            </span>
  5605.          
  5606.        
  5607.  
  5608.        
  5609.  
  5610.        
  5611.          
  5612.            <div class="productitem__stock-level">
  5613.              <!--
  5614.  
  5615.  
  5616.  
  5617.  
  5618.  
  5619.  
  5620.  
  5621. <div class="product-stock-level-wrapper" >
  5622.  
  5623.    <span class="
  5624.  product-stock-level
  5625.  product-stock-level--continue-selling
  5626.  
  5627. ">
  5628.      
  5629.  
  5630.      <span class="product-stock-level__text">
  5631.        
  5632.        <div class="product-stock-level__badge-text">
  5633.          
  5634.  
  5635.    In stock
  5636.  
  5637.  
  5638.        </div>
  5639.      </span>
  5640.    </span>
  5641.  
  5642. </div>
  5643. -->
  5644.              
  5645.  
  5646.  
  5647.    
  5648.      <b style="color:green">In stock</b>
  5649.    
  5650.  
  5651.  
  5652.  
  5653.  
  5654.  
  5655.  
  5656.  
  5657.            </div>
  5658.          
  5659.  
  5660.          
  5661.            
  5662.          
  5663.        
  5664.  
  5665.        
  5666.          <div class="productitem--description">
  5667.            <p>Plugs directly into AC outlet.
  5668.  
  5669. Input: 100-240V ~ 50-60Hz
  5670. Output: 12V – 1.5A 18W
  5671. Connector Tip: mini USB
  5672. Colour: Black
  5673.  
  5674. Compatible Part #s: KP.01...</p>
  5675.  
  5676.            
  5677.              <a
  5678.                href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
  5679.                class="productitem--link"
  5680.                data-product-page-link
  5681.              >
  5682.                View full details
  5683.              </a>
  5684.            
  5685.          </div>
  5686.        
  5687.      </div>
  5688.  
  5689.      
  5690.        
  5691.          
  5692.          
  5693.          
  5694.  
  5695.          
  5696.          
  5697.  
  5698.          
  5699.  
  5700.          
  5701.  
  5702.          <div class="productitem--actions" data-product-actions>
  5703.            <div class="productitem--listview-price">
  5704.              
  5705.  
  5706.  
  5707.  
  5708.  
  5709.  
  5710.  
  5711.  
  5712.  
  5713.  
  5714.  
  5715.  
  5716.  
  5717.  
  5718.  
  5719.  
  5720.  
  5721.  
  5722.  
  5723.  
  5724.  
  5725.  
  5726.  
  5727.  
  5728.  
  5729.  
  5730.  
  5731.  
  5732.  
  5733.  
  5734.  
  5735. <div class="price productitem__price ">
  5736.  
  5737.    <div
  5738.      class="price__compare-at visible"
  5739.      data-price-compare-container
  5740.    >
  5741.  
  5742.      
  5743.        <span class="money price__original" data-price-original></span>
  5744.      
  5745.    </div>
  5746.  
  5747.  
  5748.    
  5749.      
  5750.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  5751.        
  5752.          <span class="visually-hidden">Original price</span>
  5753.          <span class="money price__compare-at--min" data-price-compare-min>
  5754.            $79.99
  5755.          </span>
  5756.          -
  5757.          <span class="visually-hidden">Original price</span>
  5758.          <span class="money price__compare-at--max" data-price-compare-max>
  5759.            $79.99
  5760.          </span>
  5761.        
  5762.      </div>
  5763.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  5764.        <span class="visually-hidden">Original price</span>
  5765.        <span class="money price__compare-at--single" data-price-compare>
  5766.          
  5767.        </span>
  5768.      </div>
  5769.    
  5770.  
  5771.  
  5772.  <div class="price__current price__current--emphasize " data-price-container>
  5773.  
  5774.    
  5775.  
  5776.    
  5777.      
  5778.      
  5779.      <span class="money" data-price>
  5780.        $79.99
  5781.      </span>
  5782.    
  5783.    
  5784.  </div>
  5785.  
  5786.  
  5787.    
  5788.    <div class="price__current--hidden" data-current-price-range-hidden>
  5789.      
  5790.        <span class="money price__current--min" data-price-min>$79.99</span>
  5791.        -
  5792.        <span class="money price__current--max" data-price-max>$79.99</span>
  5793.      
  5794.    </div>
  5795.    <div class="price__current--hidden" data-current-price-hidden>
  5796.      <span class="visually-hidden">Current price</span>
  5797.      <span class="money" data-price>
  5798.        $79.99
  5799.      </span>
  5800.    </div>
  5801.  
  5802.  
  5803.  
  5804.    
  5805.    
  5806.    
  5807.    
  5808.  
  5809.    <div
  5810.      class="
  5811.        productitem__unit-price
  5812.        hidden
  5813.      "
  5814.      data-unit-price
  5815.    >
  5816.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  5817.    </div>
  5818.  
  5819.  
  5820.  
  5821. </div>
  5822.  
  5823.  
  5824.            </div>
  5825.  
  5826.            <div class="productitem--listview-badge">
  5827.              
  5828.  
  5829.  
  5830.  
  5831.  
  5832.  
  5833.  
  5834.  
  5835.  
  5836.  
  5837.  
  5838.  
  5839.  
  5840.  
  5841.  
  5842.  
  5843.  
  5844.  
  5845.  
  5846.  
  5847.  
  5848.  
  5849.  
  5850.  
  5851.  
  5852.  
  5853.  
  5854.  
  5855.            </div>
  5856.  
  5857.            
  5858.              <div
  5859.                class="
  5860.                  productitem--action
  5861.                  quickshop-button
  5862.                  
  5863.                "
  5864.              >
  5865.                <button
  5866.                  class="productitem--action-trigger button-secondary"
  5867.                  data-quickshop-full
  5868.                  
  5869.                  
  5870.                  type="button"
  5871.                >
  5872.                  Quick shop
  5873.                </button>
  5874.              </div>
  5875.            
  5876.  
  5877.            
  5878.              <div
  5879.                class="
  5880.                  productitem--action
  5881.                  atc--button
  5882.                  
  5883.                "
  5884.              >
  5885.                <button
  5886.                  class="productitem--action-trigger productitem--action-atc button-primary"
  5887.                  type="button"
  5888.                  aria-label="Add to cart"
  5889.                  
  5890.                    data-quick-buy
  5891.                  
  5892.                  data-variant-id="39666212798551"
  5893.                  
  5894.                >
  5895.                  <span class="atc-button--text">
  5896.                    Add to cart
  5897.                  </span>
  5898.                  <span class="atc-button--icon"><svg
  5899.  aria-hidden="true"
  5900.  focusable="false"
  5901.  role="presentation"
  5902.  width="26"
  5903.  height="26"
  5904.  viewBox="0 0 26 26"
  5905.  xmlns="http://www.w3.org/2000/svg"
  5906. >
  5907.  <g fill-rule="nonzero" fill="currentColor">
  5908.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  5909.  </g>
  5910. </svg></span>
  5911.                </button>
  5912.              </div>
  5913.            
  5914.          </div>
  5915.        
  5916.      
  5917.    </div>
  5918.  </div>
  5919.  
  5920.  
  5921.    <script type="application/json" data-quick-buy-settings>
  5922.      {
  5923.        "cart_redirection": true,
  5924.        "money_format": "${{amount}}"
  5925.      }
  5926.    </script>
  5927.  
  5928. </li>
  5929.    
  5930.      
  5931.  
  5932.  
  5933.  
  5934.  
  5935.  
  5936.  
  5937.  
  5938.  
  5939.  
  5940.  
  5941.  
  5942.  
  5943.  
  5944.  
  5945.  
  5946.  
  5947.  
  5948.  
  5949.  
  5950.  
  5951.    
  5952.    
  5953.  
  5954.  
  5955.  
  5956.  
  5957.  
  5958.  
  5959.  
  5960.  
  5961.  
  5962.  
  5963.  
  5964.    
  5965.  
  5966.  
  5967.  
  5968. <li
  5969.  class="productgrid--item  imagestyle--natural    productitem--sale  productitem--emphasis      show-actions--mobile"
  5970.  data-product-item
  5971.  data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5972.  
  5973. >
  5974.  <div class="productitem" data-product-item-content>
  5975.    
  5976.    
  5977.    
  5978.    
  5979.  
  5980.    
  5981.  
  5982.    
  5983.  
  5984.    <div class="productitem__container">
  5985.      
  5986.  
  5987.      <div class="productitem__image-container">
  5988.        <a target="_blank"
  5989.          class="productitem--image-link"
  5990.          href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5991.          aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  5992.          tabindex="-1"
  5993.          data-product-page-link
  5994.        >
  5995.          <figure
  5996.            class="productitem--image"
  5997.            data-product-item-image
  5998.            
  5999.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6000.            
  6001.          >
  6002.            
  6003.              
  6004.              
  6005.  
  6006.  
  6007.    <noscript data-rimg-noscript>
  6008.      <img loading="lazy"
  6009.        
  6010.          src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  6011.        
  6012.  
  6013.        alt="B156HTN03.6"
  6014.        data-rimg="noscript"
  6015.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
  6016.        class="productitem--image-primary"
  6017.        
  6018.        
  6019.      >
  6020.    </noscript>
  6021.  
  6022.  
  6023.  <img loading="lazy"
  6024.    
  6025.      src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
  6026.    
  6027.    alt="B156HTN03.6"
  6028.  
  6029.    
  6030.      data-rimg="lazy"
  6031.      data-rimg-scale="1"
  6032.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
  6033.      data-rimg-max="500x500"
  6034.      data-rimg-crop="false"
  6035.      
  6036.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  6037.    
  6038.  
  6039.    class="productitem--image-primary"
  6040.    
  6041.    
  6042.  >
  6043.  
  6044.  
  6045.  
  6046.  <div data-rimg-canvas></div>
  6047.  
  6048.  
  6049.            
  6050.  
  6051.            
  6052.  
  6053.  
  6054.  
  6055.  
  6056.  
  6057.  
  6058.  
  6059.  
  6060.  
  6061.  
  6062.  
  6063.  
  6064.  
  6065.  
  6066.  
  6067.  
  6068.  
  6069.  
  6070.  
  6071.  
  6072.  
  6073.  
  6074.  
  6075.  
  6076.  
  6077.  
  6078.  
  6079.  
  6080.  
  6081.  
  6082.  
  6083.  <span class="productitem__badge productitem__badge--sale"
  6084.    data-badge-sales
  6085.    
  6086.  >
  6087.    <span data-badge-sales-range>
  6088.      
  6089.        
  6090.          Save <span data-price-percent-saved>11</span>%
  6091.        
  6092.      
  6093.    </span>
  6094.    <span data-badge-sales-single style="display: none;">
  6095.      
  6096.        Save <span data-price-percent-saved></span>%
  6097.      
  6098.    </span>
  6099.  </span>
  6100.          </figure>
  6101.        </a>
  6102.      </div><div class="productitem--info">
  6103.        
  6104.          
  6105.  
  6106.        
  6107.  
  6108.        
  6109.          
  6110.  
  6111.  
  6112.  
  6113.  
  6114.  
  6115.  
  6116.  
  6117.  
  6118.  
  6119.  
  6120.  
  6121.  
  6122.  
  6123.  
  6124.  
  6125.  
  6126.  
  6127.  
  6128.  
  6129.  
  6130.  
  6131.  
  6132.  
  6133.  
  6134.  
  6135.  
  6136.  
  6137.  
  6138.  
  6139.  
  6140. <div class="price productitem__price ">
  6141.  
  6142.    <div
  6143.      class="price__compare-at visible"
  6144.      data-price-compare-container
  6145.    >
  6146.  
  6147.      
  6148.        <span class="visually-hidden">Original price</span>
  6149.        <span class="money price__compare-at--single" data-price-compare>
  6150.          $139.99
  6151.        </span>
  6152.      
  6153.    </div>
  6154.  
  6155.  
  6156.    
  6157.      
  6158.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6159.        
  6160.          <span class="visually-hidden">Original price</span>
  6161.          <span class="money price__compare-at--min" data-price-compare-min>
  6162.            $139.99
  6163.          </span>
  6164.          -
  6165.          <span class="visually-hidden">Original price</span>
  6166.          <span class="money price__compare-at--max" data-price-compare-max>
  6167.            $139.99
  6168.          </span>
  6169.        
  6170.      </div>
  6171.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6172.        <span class="visually-hidden">Original price</span>
  6173.        <span class="money price__compare-at--single" data-price-compare>
  6174.          $139.99
  6175.        </span>
  6176.      </div>
  6177.    
  6178.  
  6179.  
  6180.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6181.  
  6182.    
  6183.  
  6184.    
  6185.      
  6186.      
  6187.        <span class="visually-hidden">Current price</span>
  6188.      
  6189.      <span class="money" data-price>
  6190.        $123.99
  6191.      </span>
  6192.    
  6193.    
  6194.  </div>
  6195.  
  6196.  
  6197.    
  6198.    <div class="price__current--hidden" data-current-price-range-hidden>
  6199.      
  6200.        <span class="money price__current--min" data-price-min>$123.99</span>
  6201.        -
  6202.        <span class="money price__current--max" data-price-max>$123.99</span>
  6203.      
  6204.    </div>
  6205.    <div class="price__current--hidden" data-current-price-hidden>
  6206.      <span class="visually-hidden">Current price</span>
  6207.      <span class="money" data-price>
  6208.        $123.99
  6209.      </span>
  6210.    </div>
  6211.  
  6212.  
  6213.  
  6214.    
  6215.    
  6216.    
  6217.    
  6218.  
  6219.    <div
  6220.      class="
  6221.        productitem__unit-price
  6222.        hidden
  6223.      "
  6224.      data-unit-price
  6225.    >
  6226.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6227.    </div>
  6228.  
  6229.  
  6230.  
  6231. </div>
  6232.  
  6233.  
  6234.        
  6235.  
  6236.        <h2 class="productitem--title">
  6237.          <a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
  6238.            15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
  6239.          </a>
  6240.        </h2>
  6241.  
  6242.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6243.        <div class="star_container 3929811353687"></div>
  6244.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6245.  
  6246.        
  6247.          
  6248.            <span class="productitem--vendor">
  6249.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6250.            </span>
  6251.          
  6252.        
  6253.  
  6254.        
  6255.  
  6256.        
  6257.          
  6258.            <div class="productitem__stock-level">
  6259.              <!--
  6260.  
  6261.  
  6262.  
  6263.  
  6264.  
  6265.  
  6266.  
  6267. <div class="product-stock-level-wrapper" >
  6268.  
  6269.    <span class="
  6270.  product-stock-level
  6271.  product-stock-level--continue-selling
  6272.  
  6273. ">
  6274.      
  6275.  
  6276.      <span class="product-stock-level__text">
  6277.        
  6278.        <div class="product-stock-level__badge-text">
  6279.          
  6280.  
  6281.    In stock
  6282.  
  6283.  
  6284.        </div>
  6285.      </span>
  6286.    </span>
  6287.  
  6288. </div>
  6289. -->
  6290.              
  6291.  
  6292.  
  6293.    
  6294.      <b style="color:green">In stock</b>
  6295.    
  6296.  
  6297.  
  6298.  
  6299.  
  6300.  
  6301.  
  6302.  
  6303.            </div>
  6304.          
  6305.  
  6306.          
  6307.            
  6308.          
  6309.        
  6310.  
  6311.        
  6312.          <div class="productitem--description">
  6313.            <p>
  6314. Description: New AU Optronics FHD 1920x1080 laptop lcd led screen, 15.6". This may be the replacement part you need to replace your broken or dama...</p>
  6315.  
  6316.            
  6317.              <a
  6318.                href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
  6319.                class="productitem--link"
  6320.                data-product-page-link
  6321.              >
  6322.                View full details
  6323.              </a>
  6324.            
  6325.          </div>
  6326.        
  6327.      </div>
  6328.  
  6329.      
  6330.        
  6331.          
  6332.          
  6333.          
  6334.  
  6335.          
  6336.          
  6337.  
  6338.          
  6339.  
  6340.          
  6341.  
  6342.          <div class="productitem--actions" data-product-actions>
  6343.            <div class="productitem--listview-price">
  6344.              
  6345.  
  6346.  
  6347.  
  6348.  
  6349.  
  6350.  
  6351.  
  6352.  
  6353.  
  6354.  
  6355.  
  6356.  
  6357.  
  6358.  
  6359.  
  6360.  
  6361.  
  6362.  
  6363.  
  6364.  
  6365.  
  6366.  
  6367.  
  6368.  
  6369.  
  6370.  
  6371.  
  6372.  
  6373.  
  6374.  
  6375. <div class="price productitem__price ">
  6376.  
  6377.    <div
  6378.      class="price__compare-at visible"
  6379.      data-price-compare-container
  6380.    >
  6381.  
  6382.      
  6383.        <span class="visually-hidden">Original price</span>
  6384.        <span class="money price__compare-at--single" data-price-compare>
  6385.          $139.99
  6386.        </span>
  6387.      
  6388.    </div>
  6389.  
  6390.  
  6391.    
  6392.      
  6393.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6394.        
  6395.          <span class="visually-hidden">Original price</span>
  6396.          <span class="money price__compare-at--min" data-price-compare-min>
  6397.            $139.99
  6398.          </span>
  6399.          -
  6400.          <span class="visually-hidden">Original price</span>
  6401.          <span class="money price__compare-at--max" data-price-compare-max>
  6402.            $139.99
  6403.          </span>
  6404.        
  6405.      </div>
  6406.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6407.        <span class="visually-hidden">Original price</span>
  6408.        <span class="money price__compare-at--single" data-price-compare>
  6409.          $139.99
  6410.        </span>
  6411.      </div>
  6412.    
  6413.  
  6414.  
  6415.  <div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
  6416.  
  6417.    
  6418.  
  6419.    
  6420.      
  6421.      
  6422.        <span class="visually-hidden">Current price</span>
  6423.      
  6424.      <span class="money" data-price>
  6425.        $123.99
  6426.      </span>
  6427.    
  6428.    
  6429.  </div>
  6430.  
  6431.  
  6432.    
  6433.    <div class="price__current--hidden" data-current-price-range-hidden>
  6434.      
  6435.        <span class="money price__current--min" data-price-min>$123.99</span>
  6436.        -
  6437.        <span class="money price__current--max" data-price-max>$123.99</span>
  6438.      
  6439.    </div>
  6440.    <div class="price__current--hidden" data-current-price-hidden>
  6441.      <span class="visually-hidden">Current price</span>
  6442.      <span class="money" data-price>
  6443.        $123.99
  6444.      </span>
  6445.    </div>
  6446.  
  6447.  
  6448.  
  6449.    
  6450.    
  6451.    
  6452.    
  6453.  
  6454.    <div
  6455.      class="
  6456.        productitem__unit-price
  6457.        hidden
  6458.      "
  6459.      data-unit-price
  6460.    >
  6461.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6462.    </div>
  6463.  
  6464.  
  6465.  
  6466. </div>
  6467.  
  6468.  
  6469.            </div>
  6470.  
  6471.            <div class="productitem--listview-badge">
  6472.              
  6473.  
  6474.  
  6475.  
  6476.  
  6477.  
  6478.  
  6479.  
  6480.  
  6481.  
  6482.  
  6483.  
  6484.  
  6485.  
  6486.  
  6487.  
  6488.  
  6489.  
  6490.  
  6491.  
  6492.  
  6493.  
  6494.  
  6495.  
  6496.  
  6497.  
  6498.  
  6499.  
  6500.  
  6501.  
  6502.  
  6503.  
  6504.  <span class="productitem__badge productitem__badge--sale"
  6505.    data-badge-sales
  6506.    
  6507.  >
  6508.    <span data-badge-sales-range>
  6509.      
  6510.        
  6511.          Save <span data-price-percent-saved>11</span>%
  6512.        
  6513.      
  6514.    </span>
  6515.    <span data-badge-sales-single style="display: none;">
  6516.      
  6517.        Save <span data-price-percent-saved></span>%
  6518.      
  6519.    </span>
  6520.  </span>
  6521.            </div>
  6522.  
  6523.            
  6524.              <div
  6525.                class="
  6526.                  productitem--action
  6527.                  quickshop-button
  6528.                  
  6529.                "
  6530.              >
  6531.                <button
  6532.                  class="productitem--action-trigger button-secondary"
  6533.                  data-quickshop-full
  6534.                  
  6535.                  
  6536.                  type="button"
  6537.                >
  6538.                  Quick shop
  6539.                </button>
  6540.              </div>
  6541.            
  6542.  
  6543.            
  6544.              <div
  6545.                class="
  6546.                  productitem--action
  6547.                  atc--button
  6548.                  
  6549.                "
  6550.              >
  6551.                <button
  6552.                  class="productitem--action-trigger productitem--action-atc button-primary"
  6553.                  type="button"
  6554.                  aria-label="Add to cart"
  6555.                  
  6556.                    data-quick-buy
  6557.                  
  6558.                  data-variant-id="29564283551831"
  6559.                  
  6560.                >
  6561.                  <span class="atc-button--text">
  6562.                    Add to cart
  6563.                  </span>
  6564.                  <span class="atc-button--icon"><svg
  6565.  aria-hidden="true"
  6566.  focusable="false"
  6567.  role="presentation"
  6568.  width="26"
  6569.  height="26"
  6570.  viewBox="0 0 26 26"
  6571.  xmlns="http://www.w3.org/2000/svg"
  6572. >
  6573.  <g fill-rule="nonzero" fill="currentColor">
  6574.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  6575.  </g>
  6576. </svg></span>
  6577.                </button>
  6578.              </div>
  6579.            
  6580.          </div>
  6581.        
  6582.      
  6583.    </div>
  6584.  </div>
  6585.  
  6586.  
  6587.    <script type="application/json" data-quick-buy-settings>
  6588.      {
  6589.        "cart_redirection": true,
  6590.        "money_format": "${{amount}}"
  6591.      }
  6592.    </script>
  6593.  
  6594. </li>
  6595.    
  6596.      
  6597.  
  6598.  
  6599.  
  6600.  
  6601.  
  6602.  
  6603.  
  6604.  
  6605.  
  6606.  
  6607.  
  6608.  
  6609.  
  6610.  
  6611.  
  6612.  
  6613.  
  6614.  
  6615.  
  6616.  
  6617.  
  6618.  
  6619.  
  6620.  
  6621.  
  6622.  
  6623.  
  6624.  
  6625.  
  6626.  
  6627.  
  6628.  
  6629.    
  6630.  
  6631.  
  6632.  
  6633. <li
  6634.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  6635.  data-product-item
  6636.  data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6637.  
  6638. >
  6639.  <div class="productitem" data-product-item-content>
  6640.    
  6641.    
  6642.    
  6643.    
  6644.  
  6645.    
  6646.  
  6647.    
  6648.  
  6649.    <div class="productitem__container">
  6650.      
  6651.  
  6652.      <div class="productitem__image-container">
  6653.        <a target="_blank"
  6654.          class="productitem--image-link"
  6655.          href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6656.          aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6657.          tabindex="-1"
  6658.          data-product-page-link
  6659.        >
  6660.          <figure
  6661.            class="productitem--image"
  6662.            data-product-item-image
  6663.            
  6664.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  6665.            
  6666.          >
  6667.            
  6668.              
  6669.              
  6670.  
  6671.  
  6672.    <noscript data-rimg-noscript>
  6673.      <img loading="lazy"
  6674.        
  6675.          src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6676.        
  6677.  
  6678.        alt=""
  6679.        data-rimg="noscript"
  6680.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527 1x, //laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_998x998.jpg?v=1648038527 1.95x"
  6681.        class="productitem--image-primary"
  6682.        
  6683.        
  6684.      >
  6685.    </noscript>
  6686.  
  6687.  
  6688.  <img loading="lazy"
  6689.    
  6690.      src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
  6691.    
  6692.    alt=""
  6693.  
  6694.    
  6695.      data-rimg="lazy"
  6696.      data-rimg-scale="1"
  6697.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
  6698.      data-rimg-max="1000x1000"
  6699.      data-rimg-crop="false"
  6700.      
  6701.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  6702.    
  6703.  
  6704.    class="productitem--image-primary"
  6705.    
  6706.    
  6707.  >
  6708.  
  6709.  
  6710.  
  6711.  <div data-rimg-canvas></div>
  6712.  
  6713.  
  6714.            
  6715.  
  6716.            
  6717.  
  6718.  
  6719.  
  6720.  
  6721.  
  6722.  
  6723.  
  6724.  
  6725.  
  6726.  
  6727.  
  6728.  
  6729.  
  6730.  
  6731.  
  6732.  
  6733.  
  6734.  
  6735.  
  6736.  
  6737.  
  6738.  
  6739.  
  6740.  
  6741.  
  6742.  
  6743.  
  6744.          </figure>
  6745.        </a>
  6746.      </div><div class="productitem--info">
  6747.        
  6748.          
  6749.  
  6750.        
  6751.  
  6752.        
  6753.          
  6754.  
  6755.  
  6756.  
  6757.  
  6758.  
  6759.  
  6760.  
  6761.  
  6762.  
  6763.  
  6764.  
  6765.  
  6766.  
  6767.  
  6768.  
  6769.  
  6770.  
  6771.  
  6772.  
  6773.  
  6774.  
  6775.  
  6776.  
  6777.  
  6778.  
  6779.  
  6780.  
  6781.  
  6782.  
  6783.  
  6784. <div class="price productitem__price ">
  6785.  
  6786.    <div
  6787.      class="price__compare-at visible"
  6788.      data-price-compare-container
  6789.    >
  6790.  
  6791.      
  6792.        <span class="money price__original" data-price-original></span>
  6793.      
  6794.    </div>
  6795.  
  6796.  
  6797.    
  6798.      
  6799.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  6800.        
  6801.          <span class="visually-hidden">Original price</span>
  6802.          <span class="money price__compare-at--min" data-price-compare-min>
  6803.            $129.99
  6804.          </span>
  6805.          -
  6806.          <span class="visually-hidden">Original price</span>
  6807.          <span class="money price__compare-at--max" data-price-compare-max>
  6808.            $129.99
  6809.          </span>
  6810.        
  6811.      </div>
  6812.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  6813.        <span class="visually-hidden">Original price</span>
  6814.        <span class="money price__compare-at--single" data-price-compare>
  6815.          
  6816.        </span>
  6817.      </div>
  6818.    
  6819.  
  6820.  
  6821.  <div class="price__current price__current--emphasize " data-price-container>
  6822.  
  6823.    
  6824.  
  6825.    
  6826.      
  6827.      
  6828.      <span class="money" data-price>
  6829.        $129.99
  6830.      </span>
  6831.    
  6832.    
  6833.  </div>
  6834.  
  6835.  
  6836.    
  6837.    <div class="price__current--hidden" data-current-price-range-hidden>
  6838.      
  6839.        <span class="money price__current--min" data-price-min>$129.99</span>
  6840.        -
  6841.        <span class="money price__current--max" data-price-max>$129.99</span>
  6842.      
  6843.    </div>
  6844.    <div class="price__current--hidden" data-current-price-hidden>
  6845.      <span class="visually-hidden">Current price</span>
  6846.      <span class="money" data-price>
  6847.        $129.99
  6848.      </span>
  6849.    </div>
  6850.  
  6851.  
  6852.  
  6853.    
  6854.    
  6855.    
  6856.    
  6857.  
  6858.    <div
  6859.      class="
  6860.        productitem__unit-price
  6861.        hidden
  6862.      "
  6863.      data-unit-price
  6864.    >
  6865.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  6866.    </div>
  6867.  
  6868.  
  6869.  
  6870. </div>
  6871.  
  6872.  
  6873.        
  6874.  
  6875.        <h2 class="productitem--title">
  6876.          <a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
  6877.            Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
  6878.          </a>
  6879.        </h2>
  6880.  
  6881.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  6882.        <div class="star_container 3929789694039"></div>
  6883.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  6884.  
  6885.        
  6886.          
  6887.            <span class="productitem--vendor">
  6888.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  6889.            </span>
  6890.          
  6891.        
  6892.  
  6893.        
  6894.  
  6895.        
  6896.          
  6897.            <div class="productitem__stock-level">
  6898.              <!--
  6899.  
  6900.  
  6901.  
  6902.  
  6903.  
  6904.  
  6905.  
  6906. <div class="product-stock-level-wrapper" >
  6907.  
  6908.    <span class="
  6909.  product-stock-level
  6910.  product-stock-level--continue-selling
  6911.  
  6912. ">
  6913.      
  6914.  
  6915.      <span class="product-stock-level__text">
  6916.        
  6917.        <div class="product-stock-level__badge-text">
  6918.          
  6919.  
  6920.    In stock
  6921.  
  6922.  
  6923.        </div>
  6924.      </span>
  6925.    </span>
  6926.  
  6927. </div>
  6928. -->
  6929.              
  6930.  
  6931.  
  6932.    
  6933.      <b style="color:green">In stock</b>
  6934.    
  6935.  
  6936.  
  6937.  
  6938.  
  6939.  
  6940.  
  6941.  
  6942.            </div>
  6943.          
  6944.  
  6945.          
  6946.            
  6947.          
  6948.        
  6949.  
  6950.        
  6951.          <div class="productitem--description">
  6952.            <p>
  6953. Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
  6954.  
  6955. Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
  6956.  
  6957. Compatible Models:
  6958. Dell Lati...</p>
  6959.  
  6960.            
  6961.              <a
  6962.                href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
  6963.                class="productitem--link"
  6964.                data-product-page-link
  6965.              >
  6966.                View full details
  6967.              </a>
  6968.            
  6969.          </div>
  6970.        
  6971.      </div>
  6972.  
  6973.      
  6974.        
  6975.          
  6976.          
  6977.          
  6978.  
  6979.          
  6980.          
  6981.  
  6982.          
  6983.  
  6984.          
  6985.  
  6986.          <div class="productitem--actions" data-product-actions>
  6987.            <div class="productitem--listview-price">
  6988.              
  6989.  
  6990.  
  6991.  
  6992.  
  6993.  
  6994.  
  6995.  
  6996.  
  6997.  
  6998.  
  6999.  
  7000.  
  7001.  
  7002.  
  7003.  
  7004.  
  7005.  
  7006.  
  7007.  
  7008.  
  7009.  
  7010.  
  7011.  
  7012.  
  7013.  
  7014.  
  7015.  
  7016.  
  7017.  
  7018.  
  7019. <div class="price productitem__price ">
  7020.  
  7021.    <div
  7022.      class="price__compare-at visible"
  7023.      data-price-compare-container
  7024.    >
  7025.  
  7026.      
  7027.        <span class="money price__original" data-price-original></span>
  7028.      
  7029.    </div>
  7030.  
  7031.  
  7032.    
  7033.      
  7034.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7035.        
  7036.          <span class="visually-hidden">Original price</span>
  7037.          <span class="money price__compare-at--min" data-price-compare-min>
  7038.            $129.99
  7039.          </span>
  7040.          -
  7041.          <span class="visually-hidden">Original price</span>
  7042.          <span class="money price__compare-at--max" data-price-compare-max>
  7043.            $129.99
  7044.          </span>
  7045.        
  7046.      </div>
  7047.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7048.        <span class="visually-hidden">Original price</span>
  7049.        <span class="money price__compare-at--single" data-price-compare>
  7050.          
  7051.        </span>
  7052.      </div>
  7053.    
  7054.  
  7055.  
  7056.  <div class="price__current price__current--emphasize " data-price-container>
  7057.  
  7058.    
  7059.  
  7060.    
  7061.      
  7062.      
  7063.      <span class="money" data-price>
  7064.        $129.99
  7065.      </span>
  7066.    
  7067.    
  7068.  </div>
  7069.  
  7070.  
  7071.    
  7072.    <div class="price__current--hidden" data-current-price-range-hidden>
  7073.      
  7074.        <span class="money price__current--min" data-price-min>$129.99</span>
  7075.        -
  7076.        <span class="money price__current--max" data-price-max>$129.99</span>
  7077.      
  7078.    </div>
  7079.    <div class="price__current--hidden" data-current-price-hidden>
  7080.      <span class="visually-hidden">Current price</span>
  7081.      <span class="money" data-price>
  7082.        $129.99
  7083.      </span>
  7084.    </div>
  7085.  
  7086.  
  7087.  
  7088.    
  7089.    
  7090.    
  7091.    
  7092.  
  7093.    <div
  7094.      class="
  7095.        productitem__unit-price
  7096.        hidden
  7097.      "
  7098.      data-unit-price
  7099.    >
  7100.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7101.    </div>
  7102.  
  7103.  
  7104.  
  7105. </div>
  7106.  
  7107.  
  7108.            </div>
  7109.  
  7110.            <div class="productitem--listview-badge">
  7111.              
  7112.  
  7113.  
  7114.  
  7115.  
  7116.  
  7117.  
  7118.  
  7119.  
  7120.  
  7121.  
  7122.  
  7123.  
  7124.  
  7125.  
  7126.  
  7127.  
  7128.  
  7129.  
  7130.  
  7131.  
  7132.  
  7133.  
  7134.  
  7135.  
  7136.  
  7137.  
  7138.  
  7139.            </div>
  7140.  
  7141.            
  7142.              <div
  7143.                class="
  7144.                  productitem--action
  7145.                  quickshop-button
  7146.                  
  7147.                "
  7148.              >
  7149.                <button
  7150.                  class="productitem--action-trigger button-secondary"
  7151.                  data-quickshop-full
  7152.                  
  7153.                  
  7154.                  type="button"
  7155.                >
  7156.                  Quick shop
  7157.                </button>
  7158.              </div>
  7159.            
  7160.  
  7161.            
  7162.              <div
  7163.                class="
  7164.                  productitem--action
  7165.                  atc--button
  7166.                  
  7167.                "
  7168.              >
  7169.                <button
  7170.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7171.                  type="button"
  7172.                  aria-label="Add to cart"
  7173.                  
  7174.                    data-quick-buy
  7175.                  
  7176.                  data-variant-id="29462328246359"
  7177.                  
  7178.                >
  7179.                  <span class="atc-button--text">
  7180.                    Add to cart
  7181.                  </span>
  7182.                  <span class="atc-button--icon"><svg
  7183.  aria-hidden="true"
  7184.  focusable="false"
  7185.  role="presentation"
  7186.  width="26"
  7187.  height="26"
  7188.  viewBox="0 0 26 26"
  7189.  xmlns="http://www.w3.org/2000/svg"
  7190. >
  7191.  <g fill-rule="nonzero" fill="currentColor">
  7192.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  7193.  </g>
  7194. </svg></span>
  7195.                </button>
  7196.              </div>
  7197.            
  7198.          </div>
  7199.        
  7200.      
  7201.    </div>
  7202.  </div>
  7203.  
  7204.  
  7205.    <script type="application/json" data-quick-buy-settings>
  7206.      {
  7207.        "cart_redirection": true,
  7208.        "money_format": "${{amount}}"
  7209.      }
  7210.    </script>
  7211.  
  7212. </li>
  7213.    
  7214.      
  7215.  
  7216.  
  7217.  
  7218.  
  7219.  
  7220.  
  7221.  
  7222.  
  7223.  
  7224.  
  7225.  
  7226.  
  7227.  
  7228.  
  7229.  
  7230.  
  7231.  
  7232.  
  7233.  
  7234.  
  7235.  
  7236.  
  7237.  
  7238.  
  7239.  
  7240.  
  7241.  
  7242.  
  7243.  
  7244.  
  7245.  
  7246.  
  7247.    
  7248.  
  7249.  
  7250.  
  7251. <li
  7252.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7253.  data-product-item
  7254.  data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7255.  
  7256. >
  7257.  <div class="productitem" data-product-item-content>
  7258.    
  7259.    
  7260.    
  7261.    
  7262.  
  7263.    
  7264.  
  7265.    
  7266.  
  7267.    <div class="productitem__container">
  7268.      
  7269.  
  7270.      <div class="productitem__image-container">
  7271.        <a target="_blank"
  7272.          class="productitem--image-link"
  7273.          href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7274.          aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
  7275.          tabindex="-1"
  7276.          data-product-page-link
  7277.        >
  7278.          <figure
  7279.            class="productitem--image"
  7280.            data-product-item-image
  7281.            
  7282.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7283.            
  7284.          >
  7285.            
  7286.              
  7287.              
  7288.  
  7289.  
  7290.    <noscript data-rimg-noscript>
  7291.      <img loading="lazy"
  7292.        
  7293.          src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7294.        
  7295.  
  7296.        alt=""
  7297.        data-rimg="noscript"
  7298.        srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
  7299.        class="productitem--image-primary"
  7300.        
  7301.        
  7302.      >
  7303.    </noscript>
  7304.  
  7305.  
  7306.  <img loading="lazy"
  7307.    
  7308.      src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
  7309.    
  7310.    alt=""
  7311.  
  7312.    
  7313.      data-rimg="lazy"
  7314.      data-rimg-scale="1"
  7315.      data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
  7316.      data-rimg-max="603x603"
  7317.      data-rimg-crop="false"
  7318.      
  7319.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7320.    
  7321.  
  7322.    class="productitem--image-primary"
  7323.    
  7324.    
  7325.  >
  7326.  
  7327.  
  7328.  
  7329.  <div data-rimg-canvas></div>
  7330.  
  7331.  
  7332.            
  7333.  
  7334.            
  7335.  
  7336.  
  7337.  
  7338.  
  7339.  
  7340.  
  7341.  
  7342.  
  7343.  
  7344.  
  7345.  
  7346.  
  7347.  
  7348.  
  7349.  
  7350.  
  7351.  
  7352.  
  7353.  
  7354.  
  7355.  
  7356.  
  7357.  
  7358.  
  7359.  
  7360.  
  7361.  
  7362.          </figure>
  7363.        </a>
  7364.      </div><div class="productitem--info">
  7365.        
  7366.          
  7367.  
  7368.        
  7369.  
  7370.        
  7371.          
  7372.  
  7373.  
  7374.  
  7375.  
  7376.  
  7377.  
  7378.  
  7379.  
  7380.  
  7381.  
  7382.  
  7383.  
  7384.  
  7385.  
  7386.  
  7387.  
  7388.  
  7389.  
  7390.  
  7391.  
  7392.  
  7393.  
  7394.  
  7395.  
  7396.  
  7397.  
  7398.  
  7399.  
  7400.  
  7401.  
  7402. <div class="price productitem__price ">
  7403.  
  7404.    <div
  7405.      class="price__compare-at visible"
  7406.      data-price-compare-container
  7407.    >
  7408.  
  7409.      
  7410.        <span class="money price__original" data-price-original></span>
  7411.      
  7412.    </div>
  7413.  
  7414.  
  7415.    
  7416.      
  7417.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7418.        
  7419.          <span class="visually-hidden">Original price</span>
  7420.          <span class="money price__compare-at--min" data-price-compare-min>
  7421.            $33.99
  7422.          </span>
  7423.          -
  7424.          <span class="visually-hidden">Original price</span>
  7425.          <span class="money price__compare-at--max" data-price-compare-max>
  7426.            $33.99
  7427.          </span>
  7428.        
  7429.      </div>
  7430.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7431.        <span class="visually-hidden">Original price</span>
  7432.        <span class="money price__compare-at--single" data-price-compare>
  7433.          
  7434.        </span>
  7435.      </div>
  7436.    
  7437.  
  7438.  
  7439.  <div class="price__current price__current--emphasize " data-price-container>
  7440.  
  7441.    
  7442.  
  7443.    
  7444.      
  7445.      
  7446.      <span class="money" data-price>
  7447.        $33.99
  7448.      </span>
  7449.    
  7450.    
  7451.  </div>
  7452.  
  7453.  
  7454.    
  7455.    <div class="price__current--hidden" data-current-price-range-hidden>
  7456.      
  7457.        <span class="money price__current--min" data-price-min>$33.99</span>
  7458.        -
  7459.        <span class="money price__current--max" data-price-max>$33.99</span>
  7460.      
  7461.    </div>
  7462.    <div class="price__current--hidden" data-current-price-hidden>
  7463.      <span class="visually-hidden">Current price</span>
  7464.      <span class="money" data-price>
  7465.        $33.99
  7466.      </span>
  7467.    </div>
  7468.  
  7469.  
  7470.  
  7471.    
  7472.    
  7473.    
  7474.    
  7475.  
  7476.    <div
  7477.      class="
  7478.        productitem__unit-price
  7479.        hidden
  7480.      "
  7481.      data-unit-price
  7482.    >
  7483.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7484.    </div>
  7485.  
  7486.  
  7487.  
  7488. </div>
  7489.  
  7490.  
  7491.        
  7492.  
  7493.        <h2 class="productitem--title">
  7494.          <a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
  7495.            4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
  7496.          </a>
  7497.        </h2>
  7498.  
  7499.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  7500.        <div class="star_container 1416490647575"></div>
  7501.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  7502.  
  7503.        
  7504.          
  7505.            <span class="productitem--vendor">
  7506.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  7507.            </span>
  7508.          
  7509.        
  7510.  
  7511.        
  7512.  
  7513.        
  7514.          
  7515.            <div class="productitem__stock-level">
  7516.              <!--
  7517.  
  7518.  
  7519.  
  7520.  
  7521.  
  7522.  
  7523.  
  7524. <div class="product-stock-level-wrapper" >
  7525.  
  7526.    <span class="
  7527.  product-stock-level
  7528.  product-stock-level--continue-selling
  7529.  
  7530. ">
  7531.      
  7532.  
  7533.      <span class="product-stock-level__text">
  7534.        
  7535.        <div class="product-stock-level__badge-text">
  7536.          
  7537.  
  7538.    In stock
  7539.  
  7540.  
  7541.        </div>
  7542.      </span>
  7543.    </span>
  7544.  
  7545. </div>
  7546. -->
  7547.              
  7548.  
  7549.  
  7550.    
  7551.      <b style="color:green">In stock</b>
  7552.    
  7553.  
  7554.  
  7555.  
  7556.  
  7557.  
  7558.  
  7559.  
  7560.            </div>
  7561.          
  7562.  
  7563.          
  7564.            
  7565.          
  7566.        
  7567.  
  7568.        
  7569.          <div class="productitem--description">
  7570.            <p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
  7571.  
  7572.            
  7573.          </div>
  7574.        
  7575.      </div>
  7576.  
  7577.      
  7578.        
  7579.          
  7580.          
  7581.          
  7582.  
  7583.          
  7584.          
  7585.  
  7586.          
  7587.  
  7588.          
  7589.  
  7590.          <div class="productitem--actions" data-product-actions>
  7591.            <div class="productitem--listview-price">
  7592.              
  7593.  
  7594.  
  7595.  
  7596.  
  7597.  
  7598.  
  7599.  
  7600.  
  7601.  
  7602.  
  7603.  
  7604.  
  7605.  
  7606.  
  7607.  
  7608.  
  7609.  
  7610.  
  7611.  
  7612.  
  7613.  
  7614.  
  7615.  
  7616.  
  7617.  
  7618.  
  7619.  
  7620.  
  7621.  
  7622.  
  7623. <div class="price productitem__price ">
  7624.  
  7625.    <div
  7626.      class="price__compare-at visible"
  7627.      data-price-compare-container
  7628.    >
  7629.  
  7630.      
  7631.        <span class="money price__original" data-price-original></span>
  7632.      
  7633.    </div>
  7634.  
  7635.  
  7636.    
  7637.      
  7638.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  7639.        
  7640.          <span class="visually-hidden">Original price</span>
  7641.          <span class="money price__compare-at--min" data-price-compare-min>
  7642.            $33.99
  7643.          </span>
  7644.          -
  7645.          <span class="visually-hidden">Original price</span>
  7646.          <span class="money price__compare-at--max" data-price-compare-max>
  7647.            $33.99
  7648.          </span>
  7649.        
  7650.      </div>
  7651.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  7652.        <span class="visually-hidden">Original price</span>
  7653.        <span class="money price__compare-at--single" data-price-compare>
  7654.          
  7655.        </span>
  7656.      </div>
  7657.    
  7658.  
  7659.  
  7660.  <div class="price__current price__current--emphasize " data-price-container>
  7661.  
  7662.    
  7663.  
  7664.    
  7665.      
  7666.      
  7667.      <span class="money" data-price>
  7668.        $33.99
  7669.      </span>
  7670.    
  7671.    
  7672.  </div>
  7673.  
  7674.  
  7675.    
  7676.    <div class="price__current--hidden" data-current-price-range-hidden>
  7677.      
  7678.        <span class="money price__current--min" data-price-min>$33.99</span>
  7679.        -
  7680.        <span class="money price__current--max" data-price-max>$33.99</span>
  7681.      
  7682.    </div>
  7683.    <div class="price__current--hidden" data-current-price-hidden>
  7684.      <span class="visually-hidden">Current price</span>
  7685.      <span class="money" data-price>
  7686.        $33.99
  7687.      </span>
  7688.    </div>
  7689.  
  7690.  
  7691.  
  7692.    
  7693.    
  7694.    
  7695.    
  7696.  
  7697.    <div
  7698.      class="
  7699.        productitem__unit-price
  7700.        hidden
  7701.      "
  7702.      data-unit-price
  7703.    >
  7704.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  7705.    </div>
  7706.  
  7707.  
  7708.  
  7709. </div>
  7710.  
  7711.  
  7712.            </div>
  7713.  
  7714.            <div class="productitem--listview-badge">
  7715.              
  7716.  
  7717.  
  7718.  
  7719.  
  7720.  
  7721.  
  7722.  
  7723.  
  7724.  
  7725.  
  7726.  
  7727.  
  7728.  
  7729.  
  7730.  
  7731.  
  7732.  
  7733.  
  7734.  
  7735.  
  7736.  
  7737.  
  7738.  
  7739.  
  7740.  
  7741.  
  7742.  
  7743.            </div>
  7744.  
  7745.            
  7746.              <div
  7747.                class="
  7748.                  productitem--action
  7749.                  quickshop-button
  7750.                  
  7751.                "
  7752.              >
  7753.                <button
  7754.                  class="productitem--action-trigger button-secondary"
  7755.                  data-quickshop-full
  7756.                  
  7757.                  
  7758.                  type="button"
  7759.                >
  7760.                  Quick shop
  7761.                </button>
  7762.              </div>
  7763.            
  7764.  
  7765.            
  7766.              <div
  7767.                class="
  7768.                  productitem--action
  7769.                  atc--button
  7770.                  
  7771.                "
  7772.              >
  7773.                <button
  7774.                  class="productitem--action-trigger productitem--action-atc button-primary"
  7775.                  type="button"
  7776.                  aria-label="Add to cart"
  7777.                  
  7778.                    data-quick-buy
  7779.                  
  7780.                  data-variant-id="12583329333271"
  7781.                  
  7782.                >
  7783.                  <span class="atc-button--text">
  7784.                    Add to cart
  7785.                  </span>
  7786.                  <span class="atc-button--icon"><svg
  7787.  aria-hidden="true"
  7788.  focusable="false"
  7789.  role="presentation"
  7790.  width="26"
  7791.  height="26"
  7792.  viewBox="0 0 26 26"
  7793.  xmlns="http://www.w3.org/2000/svg"
  7794. >
  7795.  <g fill-rule="nonzero" fill="currentColor">
  7796.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  7797.  </g>
  7798. </svg></span>
  7799.                </button>
  7800.              </div>
  7801.            
  7802.          </div>
  7803.        
  7804.      
  7805.    </div>
  7806.  </div>
  7807.  
  7808.  
  7809.    <script type="application/json" data-quick-buy-settings>
  7810.      {
  7811.        "cart_redirection": true,
  7812.        "money_format": "${{amount}}"
  7813.      }
  7814.    </script>
  7815.  
  7816. </li>
  7817.    
  7818.      
  7819.  
  7820.  
  7821.  
  7822.  
  7823.  
  7824.  
  7825.  
  7826.  
  7827.  
  7828.  
  7829.  
  7830.  
  7831.  
  7832.  
  7833.  
  7834.  
  7835.  
  7836.  
  7837.  
  7838.  
  7839.  
  7840.  
  7841.  
  7842.  
  7843.  
  7844.  
  7845.  
  7846.  
  7847.  
  7848.  
  7849.  
  7850.  
  7851.    
  7852.  
  7853.  
  7854.  
  7855. <li
  7856.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  7857.  data-product-item
  7858.  data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7859.  
  7860. >
  7861.  <div class="productitem" data-product-item-content>
  7862.    
  7863.    
  7864.    
  7865.    
  7866.  
  7867.    
  7868.  
  7869.    
  7870.  
  7871.    <div class="productitem__container">
  7872.      
  7873.  
  7874.      <div class="productitem__image-container">
  7875.        <a target="_blank"
  7876.          class="productitem--image-link"
  7877.          href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7878.          aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  7879.          tabindex="-1"
  7880.          data-product-page-link
  7881.        >
  7882.          <figure
  7883.            class="productitem--image"
  7884.            data-product-item-image
  7885.            
  7886.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  7887.            
  7888.          >
  7889.            
  7890.              
  7891.              
  7892.  
  7893.  
  7894.    <noscript data-rimg-noscript>
  7895.      <img loading="lazy"
  7896.        
  7897.          src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7898.        
  7899.  
  7900.        alt="MacBook Pro"
  7901.        data-rimg="noscript"
  7902.        srcset="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088 1x, //laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_998x998.jpg?v=1726123088 1.95x"
  7903.        class="productitem--image-primary"
  7904.        
  7905.        
  7906.      >
  7907.    </noscript>
  7908.  
  7909.  
  7910.  <img loading="lazy"
  7911.    
  7912.      src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
  7913.    
  7914.    alt="MacBook Pro"
  7915.  
  7916.    
  7917.      data-rimg="lazy"
  7918.      data-rimg-scale="1"
  7919.      data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
  7920.      data-rimg-max="1000x1000"
  7921.      data-rimg-crop="false"
  7922.      
  7923.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  7924.    
  7925.  
  7926.    class="productitem--image-primary"
  7927.    
  7928.    
  7929.  >
  7930.  
  7931.  
  7932.  
  7933.  <div data-rimg-canvas></div>
  7934.  
  7935.  
  7936.            
  7937.  
  7938.            
  7939.  
  7940.  
  7941.  
  7942.  
  7943.  
  7944.  
  7945.  
  7946.  
  7947.  
  7948.  
  7949.  
  7950.  
  7951.  
  7952.  
  7953.  
  7954.  
  7955.  
  7956.  
  7957.  
  7958.  
  7959.  
  7960.  
  7961.  
  7962.  
  7963.  
  7964.  
  7965.  
  7966.          </figure>
  7967.        </a>
  7968.      </div><div class="productitem--info">
  7969.        
  7970.          
  7971.  
  7972.        
  7973.  
  7974.        
  7975.          
  7976.  
  7977.  
  7978.  
  7979.  
  7980.  
  7981.  
  7982.  
  7983.  
  7984.  
  7985.  
  7986.  
  7987.  
  7988.  
  7989.  
  7990.  
  7991.  
  7992.  
  7993.  
  7994.  
  7995.  
  7996.  
  7997.  
  7998.  
  7999.  
  8000.  
  8001.  
  8002.  
  8003.  
  8004.  
  8005.  
  8006. <div class="price productitem__price ">
  8007.  
  8008.    <div
  8009.      class="price__compare-at visible"
  8010.      data-price-compare-container
  8011.    >
  8012.  
  8013.      
  8014.        <span class="money price__original" data-price-original></span>
  8015.      
  8016.    </div>
  8017.  
  8018.  
  8019.    
  8020.      
  8021.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8022.        
  8023.          <span class="visually-hidden">Original price</span>
  8024.          <span class="money price__compare-at--min" data-price-compare-min>
  8025.            $53.99
  8026.          </span>
  8027.          -
  8028.          <span class="visually-hidden">Original price</span>
  8029.          <span class="money price__compare-at--max" data-price-compare-max>
  8030.            $53.99
  8031.          </span>
  8032.        
  8033.      </div>
  8034.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8035.        <span class="visually-hidden">Original price</span>
  8036.        <span class="money price__compare-at--single" data-price-compare>
  8037.          
  8038.        </span>
  8039.      </div>
  8040.    
  8041.  
  8042.  
  8043.  <div class="price__current price__current--emphasize " data-price-container>
  8044.  
  8045.    
  8046.  
  8047.    
  8048.      
  8049.      
  8050.      <span class="money" data-price>
  8051.        $53.99
  8052.      </span>
  8053.    
  8054.    
  8055.  </div>
  8056.  
  8057.  
  8058.    
  8059.    <div class="price__current--hidden" data-current-price-range-hidden>
  8060.      
  8061.        <span class="money price__current--min" data-price-min>$53.99</span>
  8062.        -
  8063.        <span class="money price__current--max" data-price-max>$53.99</span>
  8064.      
  8065.    </div>
  8066.    <div class="price__current--hidden" data-current-price-hidden>
  8067.      <span class="visually-hidden">Current price</span>
  8068.      <span class="money" data-price>
  8069.        $53.99
  8070.      </span>
  8071.    </div>
  8072.  
  8073.  
  8074.  
  8075.    
  8076.    
  8077.    
  8078.    
  8079.  
  8080.    <div
  8081.      class="
  8082.        productitem__unit-price
  8083.        hidden
  8084.      "
  8085.      data-unit-price
  8086.    >
  8087.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8088.    </div>
  8089.  
  8090.  
  8091.  
  8092. </div>
  8093.  
  8094.  
  8095.        
  8096.  
  8097.        <h2 class="productitem--title">
  8098.          <a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
  8099.            60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
  8100.          </a>
  8101.        </h2>
  8102.  
  8103.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8104.        <div class="star_container 6872720015447"></div>
  8105.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8106.  
  8107.        
  8108.          
  8109.            <span class="productitem--vendor">
  8110.              <a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
  8111.            </span>
  8112.          
  8113.        
  8114.  
  8115.        
  8116.  
  8117.        
  8118.          
  8119.            <div class="productitem__stock-level">
  8120.              <!--
  8121.  
  8122.  
  8123.  
  8124.  
  8125.  
  8126.  
  8127.  
  8128. <div class="product-stock-level-wrapper" >
  8129.  
  8130.    <span class="
  8131.  product-stock-level
  8132.  product-stock-level--continue-selling
  8133.  
  8134. ">
  8135.      
  8136.  
  8137.      <span class="product-stock-level__text">
  8138.        
  8139.        <div class="product-stock-level__badge-text">
  8140.          
  8141.  
  8142.    In stock
  8143.  
  8144.  
  8145.        </div>
  8146.      </span>
  8147.    </span>
  8148.  
  8149. </div>
  8150. -->
  8151.              
  8152.  
  8153.  
  8154.    
  8155.      <b style="color:green">In stock</b>
  8156.    
  8157.  
  8158.  
  8159.  
  8160.  
  8161.  
  8162.  
  8163.  
  8164.            </div>
  8165.          
  8166.  
  8167.          
  8168.            
  8169.          
  8170.        
  8171.  
  8172.        
  8173.          <div class="productitem--description">
  8174.            <p>Plugs directly into AC outlet.
  8175. 60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011 
  8176. Input: 100-240V ~ 50-60Hz
  8177. Output: 1...</p>
  8178.  
  8179.            
  8180.              <a
  8181.                href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
  8182.                class="productitem--link"
  8183.                data-product-page-link
  8184.              >
  8185.                View full details
  8186.              </a>
  8187.            
  8188.          </div>
  8189.        
  8190.      </div>
  8191.  
  8192.      
  8193.        
  8194.          
  8195.          
  8196.          
  8197.  
  8198.          
  8199.          
  8200.  
  8201.          
  8202.  
  8203.          
  8204.  
  8205.          <div class="productitem--actions" data-product-actions>
  8206.            <div class="productitem--listview-price">
  8207.              
  8208.  
  8209.  
  8210.  
  8211.  
  8212.  
  8213.  
  8214.  
  8215.  
  8216.  
  8217.  
  8218.  
  8219.  
  8220.  
  8221.  
  8222.  
  8223.  
  8224.  
  8225.  
  8226.  
  8227.  
  8228.  
  8229.  
  8230.  
  8231.  
  8232.  
  8233.  
  8234.  
  8235.  
  8236.  
  8237.  
  8238. <div class="price productitem__price ">
  8239.  
  8240.    <div
  8241.      class="price__compare-at visible"
  8242.      data-price-compare-container
  8243.    >
  8244.  
  8245.      
  8246.        <span class="money price__original" data-price-original></span>
  8247.      
  8248.    </div>
  8249.  
  8250.  
  8251.    
  8252.      
  8253.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8254.        
  8255.          <span class="visually-hidden">Original price</span>
  8256.          <span class="money price__compare-at--min" data-price-compare-min>
  8257.            $53.99
  8258.          </span>
  8259.          -
  8260.          <span class="visually-hidden">Original price</span>
  8261.          <span class="money price__compare-at--max" data-price-compare-max>
  8262.            $53.99
  8263.          </span>
  8264.        
  8265.      </div>
  8266.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8267.        <span class="visually-hidden">Original price</span>
  8268.        <span class="money price__compare-at--single" data-price-compare>
  8269.          
  8270.        </span>
  8271.      </div>
  8272.    
  8273.  
  8274.  
  8275.  <div class="price__current price__current--emphasize " data-price-container>
  8276.  
  8277.    
  8278.  
  8279.    
  8280.      
  8281.      
  8282.      <span class="money" data-price>
  8283.        $53.99
  8284.      </span>
  8285.    
  8286.    
  8287.  </div>
  8288.  
  8289.  
  8290.    
  8291.    <div class="price__current--hidden" data-current-price-range-hidden>
  8292.      
  8293.        <span class="money price__current--min" data-price-min>$53.99</span>
  8294.        -
  8295.        <span class="money price__current--max" data-price-max>$53.99</span>
  8296.      
  8297.    </div>
  8298.    <div class="price__current--hidden" data-current-price-hidden>
  8299.      <span class="visually-hidden">Current price</span>
  8300.      <span class="money" data-price>
  8301.        $53.99
  8302.      </span>
  8303.    </div>
  8304.  
  8305.  
  8306.  
  8307.    
  8308.    
  8309.    
  8310.    
  8311.  
  8312.    <div
  8313.      class="
  8314.        productitem__unit-price
  8315.        hidden
  8316.      "
  8317.      data-unit-price
  8318.    >
  8319.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8320.    </div>
  8321.  
  8322.  
  8323.  
  8324. </div>
  8325.  
  8326.  
  8327.            </div>
  8328.  
  8329.            <div class="productitem--listview-badge">
  8330.              
  8331.  
  8332.  
  8333.  
  8334.  
  8335.  
  8336.  
  8337.  
  8338.  
  8339.  
  8340.  
  8341.  
  8342.  
  8343.  
  8344.  
  8345.  
  8346.  
  8347.  
  8348.  
  8349.  
  8350.  
  8351.  
  8352.  
  8353.  
  8354.  
  8355.  
  8356.  
  8357.  
  8358.            </div>
  8359.  
  8360.            
  8361.              <div
  8362.                class="
  8363.                  productitem--action
  8364.                  quickshop-button
  8365.                  
  8366.                "
  8367.              >
  8368.                <button
  8369.                  class="productitem--action-trigger button-secondary"
  8370.                  data-quickshop-full
  8371.                  
  8372.                  
  8373.                  type="button"
  8374.                >
  8375.                  Quick shop
  8376.                </button>
  8377.              </div>
  8378.            
  8379.  
  8380.            
  8381.              <div
  8382.                class="
  8383.                  productitem--action
  8384.                  atc--button
  8385.                  
  8386.                "
  8387.              >
  8388.                <button
  8389.                  class="productitem--action-trigger productitem--action-atc button-primary"
  8390.                  type="button"
  8391.                  aria-label="Add to cart"
  8392.                  
  8393.                    data-quick-buy
  8394.                  
  8395.                  data-variant-id="40156967370839"
  8396.                  
  8397.                >
  8398.                  <span class="atc-button--text">
  8399.                    Add to cart
  8400.                  </span>
  8401.                  <span class="atc-button--icon"><svg
  8402.  aria-hidden="true"
  8403.  focusable="false"
  8404.  role="presentation"
  8405.  width="26"
  8406.  height="26"
  8407.  viewBox="0 0 26 26"
  8408.  xmlns="http://www.w3.org/2000/svg"
  8409. >
  8410.  <g fill-rule="nonzero" fill="currentColor">
  8411.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  8412.  </g>
  8413. </svg></span>
  8414.                </button>
  8415.              </div>
  8416.            
  8417.          </div>
  8418.        
  8419.      
  8420.    </div>
  8421.  </div>
  8422.  
  8423.  
  8424.    <script type="application/json" data-quick-buy-settings>
  8425.      {
  8426.        "cart_redirection": true,
  8427.        "money_format": "${{amount}}"
  8428.      }
  8429.    </script>
  8430.  
  8431. </li>
  8432.    
  8433.      
  8434.  
  8435.  
  8436.  
  8437.  
  8438.  
  8439.  
  8440.  
  8441.  
  8442.  
  8443.  
  8444.  
  8445.  
  8446.  
  8447.  
  8448.  
  8449.  
  8450.  
  8451.  
  8452.  
  8453.  
  8454.  
  8455.  
  8456.  
  8457.  
  8458.  
  8459.  
  8460.  
  8461.  
  8462.  
  8463.  
  8464.  
  8465.  
  8466.    
  8467.  
  8468.  
  8469.  
  8470. <li
  8471.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  8472.  data-product-item
  8473.  data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8474.  
  8475. >
  8476.  <div class="productitem" data-product-item-content>
  8477.    
  8478.    
  8479.    
  8480.    
  8481.  
  8482.    
  8483.  
  8484.    
  8485.  
  8486.    <div class="productitem__container">
  8487.      
  8488.  
  8489.      <div class="productitem__image-container">
  8490.        <a target="_blank"
  8491.          class="productitem--image-link"
  8492.          href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8493.          aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8494.          tabindex="-1"
  8495.          data-product-page-link
  8496.        >
  8497.          <figure
  8498.            class="productitem--image"
  8499.            data-product-item-image
  8500.            
  8501.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  8502.            
  8503.          >
  8504.            
  8505.              
  8506.              
  8507.  
  8508.  
  8509.    <noscript data-rimg-noscript>
  8510.      <img loading="lazy"
  8511.        
  8512.          src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8513.        
  8514.  
  8515.        alt=""
  8516.        data-rimg="noscript"
  8517.        srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
  8518.        class="productitem--image-primary"
  8519.        
  8520.        
  8521.      >
  8522.    </noscript>
  8523.  
  8524.  
  8525.  <img loading="lazy"
  8526.    
  8527.      src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
  8528.    
  8529.    alt=""
  8530.  
  8531.    
  8532.      data-rimg="lazy"
  8533.      data-rimg-scale="1"
  8534.      data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
  8535.      data-rimg-max="500x500"
  8536.      data-rimg-crop="false"
  8537.      
  8538.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  8539.    
  8540.  
  8541.    class="productitem--image-primary"
  8542.    
  8543.    
  8544.  >
  8545.  
  8546.  
  8547.  
  8548.  <div data-rimg-canvas></div>
  8549.  
  8550.  
  8551.            
  8552.  
  8553.            
  8554.  
  8555.  
  8556.  
  8557.  
  8558.  
  8559.  
  8560.  
  8561.  
  8562.  
  8563.  
  8564.  
  8565.  
  8566.  
  8567.  
  8568.  
  8569.  
  8570.  
  8571.  
  8572.  
  8573.  
  8574.  
  8575.  
  8576.  
  8577.  
  8578.  
  8579.  
  8580.  
  8581.          </figure>
  8582.        </a>
  8583.      </div><div class="productitem--info">
  8584.        
  8585.          
  8586.  
  8587.        
  8588.  
  8589.        
  8590.          
  8591.  
  8592.  
  8593.  
  8594.  
  8595.  
  8596.  
  8597.  
  8598.  
  8599.  
  8600.  
  8601.  
  8602.  
  8603.  
  8604.  
  8605.  
  8606.  
  8607.  
  8608.  
  8609.  
  8610.  
  8611.  
  8612.  
  8613.  
  8614.  
  8615.  
  8616.  
  8617.  
  8618.  
  8619.  
  8620.  
  8621. <div class="price productitem__price ">
  8622.  
  8623.    <div
  8624.      class="price__compare-at visible"
  8625.      data-price-compare-container
  8626.    >
  8627.  
  8628.      
  8629.        <span class="money price__original" data-price-original></span>
  8630.      
  8631.    </div>
  8632.  
  8633.  
  8634.    
  8635.      
  8636.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8637.        
  8638.          <span class="visually-hidden">Original price</span>
  8639.          <span class="money price__compare-at--min" data-price-compare-min>
  8640.            $233.99
  8641.          </span>
  8642.          -
  8643.          <span class="visually-hidden">Original price</span>
  8644.          <span class="money price__compare-at--max" data-price-compare-max>
  8645.            $233.99
  8646.          </span>
  8647.        
  8648.      </div>
  8649.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8650.        <span class="visually-hidden">Original price</span>
  8651.        <span class="money price__compare-at--single" data-price-compare>
  8652.          
  8653.        </span>
  8654.      </div>
  8655.    
  8656.  
  8657.  
  8658.  <div class="price__current price__current--emphasize " data-price-container>
  8659.  
  8660.    
  8661.  
  8662.    
  8663.      
  8664.      
  8665.      <span class="money" data-price>
  8666.        $233.99
  8667.      </span>
  8668.    
  8669.    
  8670.  </div>
  8671.  
  8672.  
  8673.    
  8674.    <div class="price__current--hidden" data-current-price-range-hidden>
  8675.      
  8676.        <span class="money price__current--min" data-price-min>$233.99</span>
  8677.        -
  8678.        <span class="money price__current--max" data-price-max>$233.99</span>
  8679.      
  8680.    </div>
  8681.    <div class="price__current--hidden" data-current-price-hidden>
  8682.      <span class="visually-hidden">Current price</span>
  8683.      <span class="money" data-price>
  8684.        $233.99
  8685.      </span>
  8686.    </div>
  8687.  
  8688.  
  8689.  
  8690.    
  8691.    
  8692.    
  8693.    
  8694.  
  8695.    <div
  8696.      class="
  8697.        productitem__unit-price
  8698.        hidden
  8699.      "
  8700.      data-unit-price
  8701.    >
  8702.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8703.    </div>
  8704.  
  8705.  
  8706.  
  8707. </div>
  8708.  
  8709.  
  8710.        
  8711.  
  8712.        <h2 class="productitem--title">
  8713.          <a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
  8714.            15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
  8715.          </a>
  8716.        </h2>
  8717.  
  8718.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  8719.        <div class="star_container 3933207593047"></div>
  8720.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  8721.  
  8722.        
  8723.          
  8724.            <span class="productitem--vendor">
  8725.              <a href="/collections/vendors?q=LG" title="LG">LG</a>
  8726.            </span>
  8727.          
  8728.        
  8729.  
  8730.        
  8731.  
  8732.        
  8733.          
  8734.            <div class="productitem__stock-level">
  8735.              <!--
  8736.  
  8737.  
  8738.  
  8739.  
  8740.  
  8741.  
  8742.  
  8743. <div class="product-stock-level-wrapper" >
  8744.  
  8745.    <span class="
  8746.  product-stock-level
  8747.  product-stock-level--continue-selling
  8748.  
  8749. ">
  8750.      
  8751.  
  8752.      <span class="product-stock-level__text">
  8753.        
  8754.        <div class="product-stock-level__badge-text">
  8755.          
  8756.  
  8757.    In stock
  8758.  
  8759.  
  8760.        </div>
  8761.      </span>
  8762.    </span>
  8763.  
  8764. </div>
  8765. -->
  8766.              
  8767.  
  8768.  
  8769.    
  8770.      <b style="color:green">In stock</b>
  8771.    
  8772.  
  8773.  
  8774.  
  8775.  
  8776.  
  8777.  
  8778.  
  8779.            </div>
  8780.          
  8781.  
  8782.          
  8783.            
  8784.          
  8785.        
  8786.  
  8787.        
  8788.          <div class="productitem--description">
  8789.            <p>
  8790. Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
  8791.  
  8792. **This screen will only work if your laptop is one of the models below that ca...</p>
  8793.  
  8794.            
  8795.              <a
  8796.                href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
  8797.                class="productitem--link"
  8798.                data-product-page-link
  8799.              >
  8800.                View full details
  8801.              </a>
  8802.            
  8803.          </div>
  8804.        
  8805.      </div>
  8806.  
  8807.      
  8808.        
  8809.          
  8810.          
  8811.          
  8812.  
  8813.          
  8814.          
  8815.  
  8816.          
  8817.  
  8818.          
  8819.  
  8820.          <div class="productitem--actions" data-product-actions>
  8821.            <div class="productitem--listview-price">
  8822.              
  8823.  
  8824.  
  8825.  
  8826.  
  8827.  
  8828.  
  8829.  
  8830.  
  8831.  
  8832.  
  8833.  
  8834.  
  8835.  
  8836.  
  8837.  
  8838.  
  8839.  
  8840.  
  8841.  
  8842.  
  8843.  
  8844.  
  8845.  
  8846.  
  8847.  
  8848.  
  8849.  
  8850.  
  8851.  
  8852.  
  8853. <div class="price productitem__price ">
  8854.  
  8855.    <div
  8856.      class="price__compare-at visible"
  8857.      data-price-compare-container
  8858.    >
  8859.  
  8860.      
  8861.        <span class="money price__original" data-price-original></span>
  8862.      
  8863.    </div>
  8864.  
  8865.  
  8866.    
  8867.      
  8868.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  8869.        
  8870.          <span class="visually-hidden">Original price</span>
  8871.          <span class="money price__compare-at--min" data-price-compare-min>
  8872.            $233.99
  8873.          </span>
  8874.          -
  8875.          <span class="visually-hidden">Original price</span>
  8876.          <span class="money price__compare-at--max" data-price-compare-max>
  8877.            $233.99
  8878.          </span>
  8879.        
  8880.      </div>
  8881.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  8882.        <span class="visually-hidden">Original price</span>
  8883.        <span class="money price__compare-at--single" data-price-compare>
  8884.          
  8885.        </span>
  8886.      </div>
  8887.    
  8888.  
  8889.  
  8890.  <div class="price__current price__current--emphasize " data-price-container>
  8891.  
  8892.    
  8893.  
  8894.    
  8895.      
  8896.      
  8897.      <span class="money" data-price>
  8898.        $233.99
  8899.      </span>
  8900.    
  8901.    
  8902.  </div>
  8903.  
  8904.  
  8905.    
  8906.    <div class="price__current--hidden" data-current-price-range-hidden>
  8907.      
  8908.        <span class="money price__current--min" data-price-min>$233.99</span>
  8909.        -
  8910.        <span class="money price__current--max" data-price-max>$233.99</span>
  8911.      
  8912.    </div>
  8913.    <div class="price__current--hidden" data-current-price-hidden>
  8914.      <span class="visually-hidden">Current price</span>
  8915.      <span class="money" data-price>
  8916.        $233.99
  8917.      </span>
  8918.    </div>
  8919.  
  8920.  
  8921.  
  8922.    
  8923.    
  8924.    
  8925.    
  8926.  
  8927.    <div
  8928.      class="
  8929.        productitem__unit-price
  8930.        hidden
  8931.      "
  8932.      data-unit-price
  8933.    >
  8934.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  8935.    </div>
  8936.  
  8937.  
  8938.  
  8939. </div>
  8940.  
  8941.  
  8942.            </div>
  8943.  
  8944.            <div class="productitem--listview-badge">
  8945.              
  8946.  
  8947.  
  8948.  
  8949.  
  8950.  
  8951.  
  8952.  
  8953.  
  8954.  
  8955.  
  8956.  
  8957.  
  8958.  
  8959.  
  8960.  
  8961.  
  8962.  
  8963.  
  8964.  
  8965.  
  8966.  
  8967.  
  8968.  
  8969.  
  8970.  
  8971.  
  8972.  
  8973.            </div>
  8974.  
  8975.            
  8976.              <div
  8977.                class="
  8978.                  productitem--action
  8979.                  quickshop-button
  8980.                  
  8981.                "
  8982.              >
  8983.                <button
  8984.                  class="productitem--action-trigger button-secondary"
  8985.                  data-quickshop-full
  8986.                  
  8987.                  
  8988.                  type="button"
  8989.                >
  8990.                  Quick shop
  8991.                </button>
  8992.              </div>
  8993.            
  8994.  
  8995.            
  8996.              <div
  8997.                class="
  8998.                  productitem--action
  8999.                  atc--button
  9000.                  
  9001.                "
  9002.              >
  9003.                <button
  9004.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9005.                  type="button"
  9006.                  aria-label="Add to cart"
  9007.                  
  9008.                    data-quick-buy
  9009.                  
  9010.                  data-variant-id="29531492974679"
  9011.                  
  9012.                >
  9013.                  <span class="atc-button--text">
  9014.                    Add to cart
  9015.                  </span>
  9016.                  <span class="atc-button--icon"><svg
  9017.  aria-hidden="true"
  9018.  focusable="false"
  9019.  role="presentation"
  9020.  width="26"
  9021.  height="26"
  9022.  viewBox="0 0 26 26"
  9023.  xmlns="http://www.w3.org/2000/svg"
  9024. >
  9025.  <g fill-rule="nonzero" fill="currentColor">
  9026.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  9027.  </g>
  9028. </svg></span>
  9029.                </button>
  9030.              </div>
  9031.            
  9032.          </div>
  9033.        
  9034.      
  9035.    </div>
  9036.  </div>
  9037.  
  9038.  
  9039.    <script type="application/json" data-quick-buy-settings>
  9040.      {
  9041.        "cart_redirection": true,
  9042.        "money_format": "${{amount}}"
  9043.      }
  9044.    </script>
  9045.  
  9046. </li>
  9047.    
  9048.      
  9049.  
  9050.  
  9051.  
  9052.  
  9053.  
  9054.  
  9055.  
  9056.  
  9057.  
  9058.  
  9059.  
  9060.  
  9061.  
  9062.  
  9063.  
  9064.  
  9065.  
  9066.  
  9067.  
  9068.  
  9069.  
  9070.  
  9071.  
  9072.  
  9073.  
  9074.  
  9075.  
  9076.  
  9077.  
  9078.  
  9079.  
  9080.  
  9081.    
  9082.  
  9083.  
  9084.  
  9085. <li
  9086.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9087.  data-product-item
  9088.  data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9089.  
  9090. >
  9091.  <div class="productitem" data-product-item-content>
  9092.    
  9093.    
  9094.    
  9095.    
  9096.  
  9097.    
  9098.  
  9099.    
  9100.  
  9101.    <div class="productitem__container">
  9102.      
  9103.  
  9104.      <div class="productitem__image-container">
  9105.        <a target="_blank"
  9106.          class="productitem--image-link"
  9107.          href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9108.          aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9109.          tabindex="-1"
  9110.          data-product-page-link
  9111.        >
  9112.          <figure
  9113.            class="productitem--image"
  9114.            data-product-item-image
  9115.            
  9116.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9117.            
  9118.          >
  9119.            
  9120.              
  9121.              
  9122.  
  9123.  
  9124.    <noscript data-rimg-noscript>
  9125.      <img loading="lazy"
  9126.        
  9127.          src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  9128.        
  9129.  
  9130.        alt="Updated alt text"
  9131.        data-rimg="noscript"
  9132.        srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
  9133.        class="productitem--image-primary"
  9134.        
  9135.        
  9136.      >
  9137.    </noscript>
  9138.  
  9139.  
  9140.  <img loading="lazy"
  9141.    
  9142.      src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
  9143.    
  9144.    alt="Updated alt text"
  9145.  
  9146.    
  9147.      data-rimg="lazy"
  9148.      data-rimg-scale="1"
  9149.      data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
  9150.      data-rimg-max="500x500"
  9151.      data-rimg-crop="false"
  9152.      
  9153.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
  9154.    
  9155.  
  9156.    class="productitem--image-primary"
  9157.    
  9158.    
  9159.  >
  9160.  
  9161.  
  9162.  
  9163.  <div data-rimg-canvas></div>
  9164.  
  9165.  
  9166.            
  9167.  
  9168.            
  9169.  
  9170.  
  9171.  
  9172.  
  9173.  
  9174.  
  9175.  
  9176.  
  9177.  
  9178.  
  9179.  
  9180.  
  9181.  
  9182.  
  9183.  
  9184.  
  9185.  
  9186.  
  9187.  
  9188.  
  9189.  
  9190.  
  9191.  
  9192.  
  9193.  
  9194.  
  9195.  
  9196.          </figure>
  9197.        </a>
  9198.      </div><div class="productitem--info">
  9199.        
  9200.          
  9201.  
  9202.        
  9203.  
  9204.        
  9205.          
  9206.  
  9207.  
  9208.  
  9209.  
  9210.  
  9211.  
  9212.  
  9213.  
  9214.  
  9215.  
  9216.  
  9217.  
  9218.  
  9219.  
  9220.  
  9221.  
  9222.  
  9223.  
  9224.  
  9225.  
  9226.  
  9227.  
  9228.  
  9229.  
  9230.  
  9231.  
  9232.  
  9233.  
  9234.  
  9235.  
  9236. <div class="price productitem__price ">
  9237.  
  9238.    <div
  9239.      class="price__compare-at visible"
  9240.      data-price-compare-container
  9241.    >
  9242.  
  9243.      
  9244.        <span class="money price__original" data-price-original></span>
  9245.      
  9246.    </div>
  9247.  
  9248.  
  9249.    
  9250.      
  9251.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9252.        
  9253.          <span class="visually-hidden">Original price</span>
  9254.          <span class="money price__compare-at--min" data-price-compare-min>
  9255.            $51.99
  9256.          </span>
  9257.          -
  9258.          <span class="visually-hidden">Original price</span>
  9259.          <span class="money price__compare-at--max" data-price-compare-max>
  9260.            $51.99
  9261.          </span>
  9262.        
  9263.      </div>
  9264.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9265.        <span class="visually-hidden">Original price</span>
  9266.        <span class="money price__compare-at--single" data-price-compare>
  9267.          
  9268.        </span>
  9269.      </div>
  9270.    
  9271.  
  9272.  
  9273.  <div class="price__current price__current--emphasize " data-price-container>
  9274.  
  9275.    
  9276.  
  9277.    
  9278.      
  9279.      
  9280.      <span class="money" data-price>
  9281.        $51.99
  9282.      </span>
  9283.    
  9284.    
  9285.  </div>
  9286.  
  9287.  
  9288.    
  9289.    <div class="price__current--hidden" data-current-price-range-hidden>
  9290.      
  9291.        <span class="money price__current--min" data-price-min>$51.99</span>
  9292.        -
  9293.        <span class="money price__current--max" data-price-max>$51.99</span>
  9294.      
  9295.    </div>
  9296.    <div class="price__current--hidden" data-current-price-hidden>
  9297.      <span class="visually-hidden">Current price</span>
  9298.      <span class="money" data-price>
  9299.        $51.99
  9300.      </span>
  9301.    </div>
  9302.  
  9303.  
  9304.  
  9305.    
  9306.    
  9307.    
  9308.    
  9309.  
  9310.    <div
  9311.      class="
  9312.        productitem__unit-price
  9313.        hidden
  9314.      "
  9315.      data-unit-price
  9316.    >
  9317.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9318.    </div>
  9319.  
  9320.  
  9321.  
  9322. </div>
  9323.  
  9324.  
  9325.        
  9326.  
  9327.        <h2 class="productitem--title">
  9328.          <a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
  9329.            19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9330.          </a>
  9331.        </h2>
  9332.  
  9333.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9334.        <div class="star_container 6872273420375"></div>
  9335.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9336.  
  9337.        
  9338.          
  9339.            <span class="productitem--vendor">
  9340.              <a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
  9341.            </span>
  9342.          
  9343.        
  9344.  
  9345.        
  9346.  
  9347.        
  9348.          
  9349.            <div class="productitem__stock-level">
  9350.              <!--
  9351.  
  9352.  
  9353.  
  9354.  
  9355.  
  9356.  
  9357.  
  9358. <div class="product-stock-level-wrapper" >
  9359.  
  9360.    <span class="
  9361.  product-stock-level
  9362.  product-stock-level--continue-selling
  9363.  
  9364. ">
  9365.      
  9366.  
  9367.      <span class="product-stock-level__text">
  9368.        
  9369.        <div class="product-stock-level__badge-text">
  9370.          
  9371.  
  9372.    In stock
  9373.  
  9374.  
  9375.        </div>
  9376.      </span>
  9377.    </span>
  9378.  
  9379. </div>
  9380. -->
  9381.              
  9382.  
  9383.  
  9384.   <b style="color:green">Incoming ETA 7 to 10 Days</b>
  9385.  
  9386.  
  9387.  
  9388.  
  9389.            </div>
  9390.          
  9391.  
  9392.          
  9393.            
  9394.          
  9395.        
  9396.  
  9397.        
  9398.          <div class="productitem--description">
  9399.            <p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
  9400. Includes power cord.
  9401.  
  9402. Input: 100-240V ~ 50-60Hz
  9403. Output: 19V –...</p>
  9404.  
  9405.            
  9406.              <a
  9407.                href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
  9408.                class="productitem--link"
  9409.                data-product-page-link
  9410.              >
  9411.                View full details
  9412.              </a>
  9413.            
  9414.          </div>
  9415.        
  9416.      </div>
  9417.  
  9418.      
  9419.        
  9420.          
  9421.          
  9422.          
  9423.  
  9424.          
  9425.          
  9426.  
  9427.          
  9428.  
  9429.          
  9430.  
  9431.          <div class="productitem--actions" data-product-actions>
  9432.            <div class="productitem--listview-price">
  9433.              
  9434.  
  9435.  
  9436.  
  9437.  
  9438.  
  9439.  
  9440.  
  9441.  
  9442.  
  9443.  
  9444.  
  9445.  
  9446.  
  9447.  
  9448.  
  9449.  
  9450.  
  9451.  
  9452.  
  9453.  
  9454.  
  9455.  
  9456.  
  9457.  
  9458.  
  9459.  
  9460.  
  9461.  
  9462.  
  9463.  
  9464. <div class="price productitem__price ">
  9465.  
  9466.    <div
  9467.      class="price__compare-at visible"
  9468.      data-price-compare-container
  9469.    >
  9470.  
  9471.      
  9472.        <span class="money price__original" data-price-original></span>
  9473.      
  9474.    </div>
  9475.  
  9476.  
  9477.    
  9478.      
  9479.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9480.        
  9481.          <span class="visually-hidden">Original price</span>
  9482.          <span class="money price__compare-at--min" data-price-compare-min>
  9483.            $51.99
  9484.          </span>
  9485.          -
  9486.          <span class="visually-hidden">Original price</span>
  9487.          <span class="money price__compare-at--max" data-price-compare-max>
  9488.            $51.99
  9489.          </span>
  9490.        
  9491.      </div>
  9492.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9493.        <span class="visually-hidden">Original price</span>
  9494.        <span class="money price__compare-at--single" data-price-compare>
  9495.          
  9496.        </span>
  9497.      </div>
  9498.    
  9499.  
  9500.  
  9501.  <div class="price__current price__current--emphasize " data-price-container>
  9502.  
  9503.    
  9504.  
  9505.    
  9506.      
  9507.      
  9508.      <span class="money" data-price>
  9509.        $51.99
  9510.      </span>
  9511.    
  9512.    
  9513.  </div>
  9514.  
  9515.  
  9516.    
  9517.    <div class="price__current--hidden" data-current-price-range-hidden>
  9518.      
  9519.        <span class="money price__current--min" data-price-min>$51.99</span>
  9520.        -
  9521.        <span class="money price__current--max" data-price-max>$51.99</span>
  9522.      
  9523.    </div>
  9524.    <div class="price__current--hidden" data-current-price-hidden>
  9525.      <span class="visually-hidden">Current price</span>
  9526.      <span class="money" data-price>
  9527.        $51.99
  9528.      </span>
  9529.    </div>
  9530.  
  9531.  
  9532.  
  9533.    
  9534.    
  9535.    
  9536.    
  9537.  
  9538.    <div
  9539.      class="
  9540.        productitem__unit-price
  9541.        hidden
  9542.      "
  9543.      data-unit-price
  9544.    >
  9545.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9546.    </div>
  9547.  
  9548.  
  9549.  
  9550. </div>
  9551.  
  9552.  
  9553.            </div>
  9554.  
  9555.            <div class="productitem--listview-badge">
  9556.              
  9557.  
  9558.  
  9559.  
  9560.  
  9561.  
  9562.  
  9563.  
  9564.  
  9565.  
  9566.  
  9567.  
  9568.  
  9569.  
  9570.  
  9571.  
  9572.  
  9573.  
  9574.  
  9575.  
  9576.  
  9577.  
  9578.  
  9579.  
  9580.  
  9581.  
  9582.  
  9583.  
  9584.            </div>
  9585.  
  9586.            
  9587.              <div
  9588.                class="
  9589.                  productitem--action
  9590.                  quickshop-button
  9591.                  
  9592.                "
  9593.              >
  9594.                <button
  9595.                  class="productitem--action-trigger button-secondary"
  9596.                  data-quickshop-full
  9597.                  
  9598.                  
  9599.                  type="button"
  9600.                >
  9601.                  Quick shop
  9602.                </button>
  9603.              </div>
  9604.            
  9605.  
  9606.            
  9607.              <div
  9608.                class="
  9609.                  productitem--action
  9610.                  atc--button
  9611.                  
  9612.                "
  9613.              >
  9614.                <button
  9615.                  class="productitem--action-trigger productitem--action-atc button-primary"
  9616.                  type="button"
  9617.                  aria-label="Add to cart"
  9618.                  
  9619.                    data-quick-buy
  9620.                  
  9621.                  data-variant-id="40155858534487"
  9622.                  
  9623.                >
  9624.                  <span class="atc-button--text">
  9625.                    Add to cart
  9626.                  </span>
  9627.                  <span class="atc-button--icon"><svg
  9628.  aria-hidden="true"
  9629.  focusable="false"
  9630.  role="presentation"
  9631.  width="26"
  9632.  height="26"
  9633.  viewBox="0 0 26 26"
  9634.  xmlns="http://www.w3.org/2000/svg"
  9635. >
  9636.  <g fill-rule="nonzero" fill="currentColor">
  9637.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  9638.  </g>
  9639. </svg></span>
  9640.                </button>
  9641.              </div>
  9642.            
  9643.          </div>
  9644.        
  9645.      
  9646.    </div>
  9647.  </div>
  9648.  
  9649.  
  9650.    <script type="application/json" data-quick-buy-settings>
  9651.      {
  9652.        "cart_redirection": true,
  9653.        "money_format": "${{amount}}"
  9654.      }
  9655.    </script>
  9656.  
  9657. </li>
  9658.    
  9659.      
  9660.  
  9661.  
  9662.  
  9663.  
  9664.  
  9665.  
  9666.  
  9667.  
  9668.  
  9669.  
  9670.  
  9671.  
  9672.  
  9673.  
  9674.  
  9675.  
  9676.  
  9677.  
  9678.  
  9679.  
  9680.  
  9681.  
  9682.  
  9683.  
  9684.  
  9685.  
  9686.  
  9687.  
  9688.  
  9689.  
  9690.  
  9691.  
  9692.    
  9693.  
  9694.  
  9695.  
  9696. <li
  9697.  class="productgrid--item  imagestyle--natural      productitem--emphasis      show-actions--mobile"
  9698.  data-product-item
  9699.  data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9700.  
  9701. >
  9702.  <div class="productitem" data-product-item-content>
  9703.    
  9704.    
  9705.    
  9706.    
  9707.  
  9708.    
  9709.  
  9710.    
  9711.  
  9712.    <div class="productitem__container">
  9713.      
  9714.  
  9715.      <div class="productitem__image-container">
  9716.        <a target="_blank"
  9717.          class="productitem--image-link"
  9718.          href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9719.          aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
  9720.          tabindex="-1"
  9721.          data-product-page-link
  9722.        >
  9723.          <figure
  9724.            class="productitem--image"
  9725.            data-product-item-image
  9726.            
  9727.              style="--product-grid-item-image-aspect-ratio: 1.0;"
  9728.            
  9729.          >
  9730.            
  9731.              
  9732.              
  9733.  
  9734.  
  9735.    <noscript data-rimg-noscript>
  9736.      <img loading="lazy"
  9737.        
  9738.          src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9739.        
  9740.  
  9741.        alt=""
  9742.        data-rimg="noscript"
  9743.        srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
  9744.        class="productitem--image-primary"
  9745.        
  9746.        
  9747.      >
  9748.    </noscript>
  9749.  
  9750.  
  9751.  <img loading="lazy"
  9752.    
  9753.      src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
  9754.    
  9755.    alt=""
  9756.  
  9757.    
  9758.      data-rimg="lazy"
  9759.      data-rimg-scale="1"
  9760.      data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
  9761.      data-rimg-max="800x800"
  9762.      data-rimg-crop="false"
  9763.      
  9764.      srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
  9765.    
  9766.  
  9767.    class="productitem--image-primary"
  9768.    
  9769.    
  9770.  >
  9771.  
  9772.  
  9773.  
  9774.  <div data-rimg-canvas></div>
  9775.  
  9776.  
  9777.            
  9778.  
  9779.            
  9780.  
  9781.  
  9782.  
  9783.  
  9784.  
  9785.  
  9786.  
  9787.  
  9788.  
  9789.  
  9790.  
  9791.  
  9792.  
  9793.  
  9794.  
  9795.  
  9796.  
  9797.  
  9798.  
  9799.  
  9800.  
  9801.  
  9802.  
  9803.  
  9804.  
  9805.  
  9806.  
  9807.          </figure>
  9808.        </a>
  9809.      </div><div class="productitem--info">
  9810.        
  9811.          
  9812.  
  9813.        
  9814.  
  9815.        
  9816.          
  9817.  
  9818.  
  9819.  
  9820.  
  9821.  
  9822.  
  9823.  
  9824.  
  9825.  
  9826.  
  9827.  
  9828.  
  9829.  
  9830.  
  9831.  
  9832.  
  9833.  
  9834.  
  9835.  
  9836.  
  9837.  
  9838.  
  9839.  
  9840.  
  9841.  
  9842.  
  9843.  
  9844.  
  9845.  
  9846.  
  9847. <div class="price productitem__price ">
  9848.  
  9849.    <div
  9850.      class="price__compare-at visible"
  9851.      data-price-compare-container
  9852.    >
  9853.  
  9854.      
  9855.        <span class="money price__original" data-price-original></span>
  9856.      
  9857.    </div>
  9858.  
  9859.  
  9860.    
  9861.      
  9862.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  9863.        
  9864.          <span class="visually-hidden">Original price</span>
  9865.          <span class="money price__compare-at--min" data-price-compare-min>
  9866.            $35.99
  9867.          </span>
  9868.          -
  9869.          <span class="visually-hidden">Original price</span>
  9870.          <span class="money price__compare-at--max" data-price-compare-max>
  9871.            $35.99
  9872.          </span>
  9873.        
  9874.      </div>
  9875.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  9876.        <span class="visually-hidden">Original price</span>
  9877.        <span class="money price__compare-at--single" data-price-compare>
  9878.          
  9879.        </span>
  9880.      </div>
  9881.    
  9882.  
  9883.  
  9884.  <div class="price__current price__current--emphasize " data-price-container>
  9885.  
  9886.    
  9887.  
  9888.    
  9889.      
  9890.      
  9891.      <span class="money" data-price>
  9892.        $35.99
  9893.      </span>
  9894.    
  9895.    
  9896.  </div>
  9897.  
  9898.  
  9899.    
  9900.    <div class="price__current--hidden" data-current-price-range-hidden>
  9901.      
  9902.        <span class="money price__current--min" data-price-min>$35.99</span>
  9903.        -
  9904.        <span class="money price__current--max" data-price-max>$35.99</span>
  9905.      
  9906.    </div>
  9907.    <div class="price__current--hidden" data-current-price-hidden>
  9908.      <span class="visually-hidden">Current price</span>
  9909.      <span class="money" data-price>
  9910.        $35.99
  9911.      </span>
  9912.    </div>
  9913.  
  9914.  
  9915.  
  9916.    
  9917.    
  9918.    
  9919.    
  9920.  
  9921.    <div
  9922.      class="
  9923.        productitem__unit-price
  9924.        hidden
  9925.      "
  9926.      data-unit-price
  9927.    >
  9928.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  9929.    </div>
  9930.  
  9931.  
  9932.  
  9933. </div>
  9934.  
  9935.  
  9936.        
  9937.  
  9938.        <h2 class="productitem--title">
  9939.          <a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
  9940.            2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
  9941.          </a>
  9942.        </h2>
  9943.  
  9944.        <!-- Shopper Approved - snippets/product-grid-item.liquid -->
  9945.        <div class="star_container 4421896306775"></div>
  9946.        <!-- END Shopper Approved - snippets/product-grid-item.liquid -->
  9947.  
  9948.        
  9949.          
  9950.            <span class="productitem--vendor">
  9951.              <a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
  9952.            </span>
  9953.          
  9954.        
  9955.  
  9956.        
  9957.  
  9958.        
  9959.          
  9960.            <div class="productitem__stock-level">
  9961.              <!--
  9962.  
  9963.  
  9964.  
  9965.  
  9966.  
  9967.  
  9968.  
  9969. <div class="product-stock-level-wrapper" >
  9970.  
  9971.    <span class="
  9972.  product-stock-level
  9973.  product-stock-level--continue-selling
  9974.  
  9975. ">
  9976.      
  9977.  
  9978.      <span class="product-stock-level__text">
  9979.        
  9980.        <div class="product-stock-level__badge-text">
  9981.          
  9982.  
  9983.    In stock
  9984.  
  9985.  
  9986.        </div>
  9987.      </span>
  9988.    </span>
  9989.  
  9990. </div>
  9991. -->
  9992.              
  9993.  
  9994.  
  9995.    
  9996.      <b style="color:green">In stock</b>
  9997.    
  9998.  
  9999.  
  10000.  
  10001.  
  10002.  
  10003.  
  10004.  
  10005.            </div>
  10006.          
  10007.  
  10008.          
  10009.            
  10010.          
  10011.        
  10012.  
  10013.        
  10014.          <div class="productitem--description">
  10015.            <p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
  10016.  
  10017.            
  10018.          </div>
  10019.        
  10020.      </div>
  10021.  
  10022.      
  10023.        
  10024.          
  10025.          
  10026.          
  10027.  
  10028.          
  10029.          
  10030.  
  10031.          
  10032.  
  10033.          
  10034.  
  10035.          <div class="productitem--actions" data-product-actions>
  10036.            <div class="productitem--listview-price">
  10037.              
  10038.  
  10039.  
  10040.  
  10041.  
  10042.  
  10043.  
  10044.  
  10045.  
  10046.  
  10047.  
  10048.  
  10049.  
  10050.  
  10051.  
  10052.  
  10053.  
  10054.  
  10055.  
  10056.  
  10057.  
  10058.  
  10059.  
  10060.  
  10061.  
  10062.  
  10063.  
  10064.  
  10065.  
  10066.  
  10067.  
  10068. <div class="price productitem__price ">
  10069.  
  10070.    <div
  10071.      class="price__compare-at visible"
  10072.      data-price-compare-container
  10073.    >
  10074.  
  10075.      
  10076.        <span class="money price__original" data-price-original></span>
  10077.      
  10078.    </div>
  10079.  
  10080.  
  10081.    
  10082.      
  10083.      <div class="price__compare-at--hidden" data-compare-price-range-hidden>
  10084.        
  10085.          <span class="visually-hidden">Original price</span>
  10086.          <span class="money price__compare-at--min" data-price-compare-min>
  10087.            $35.99
  10088.          </span>
  10089.          -
  10090.          <span class="visually-hidden">Original price</span>
  10091.          <span class="money price__compare-at--max" data-price-compare-max>
  10092.            $35.99
  10093.          </span>
  10094.        
  10095.      </div>
  10096.      <div class="price__compare-at--hidden" data-compare-price-hidden>
  10097.        <span class="visually-hidden">Original price</span>
  10098.        <span class="money price__compare-at--single" data-price-compare>
  10099.          
  10100.        </span>
  10101.      </div>
  10102.    
  10103.  
  10104.  
  10105.  <div class="price__current price__current--emphasize " data-price-container>
  10106.  
  10107.    
  10108.  
  10109.    
  10110.      
  10111.      
  10112.      <span class="money" data-price>
  10113.        $35.99
  10114.      </span>
  10115.    
  10116.    
  10117.  </div>
  10118.  
  10119.  
  10120.    
  10121.    <div class="price__current--hidden" data-current-price-range-hidden>
  10122.      
  10123.        <span class="money price__current--min" data-price-min>$35.99</span>
  10124.        -
  10125.        <span class="money price__current--max" data-price-max>$35.99</span>
  10126.      
  10127.    </div>
  10128.    <div class="price__current--hidden" data-current-price-hidden>
  10129.      <span class="visually-hidden">Current price</span>
  10130.      <span class="money" data-price>
  10131.        $35.99
  10132.      </span>
  10133.    </div>
  10134.  
  10135.  
  10136.  
  10137.    
  10138.    
  10139.    
  10140.    
  10141.  
  10142.    <div
  10143.      class="
  10144.        productitem__unit-price
  10145.        hidden
  10146.      "
  10147.      data-unit-price
  10148.    >
  10149.      <span class="productitem__total-quantity" data-total-quantity></span> | <span class="productitem__unit-price--amount money" data-unit-price-amount></span> / <span class="productitem__unit-price--measure" data-unit-price-measure></span>
  10150.    </div>
  10151.  
  10152.  
  10153.  
  10154. </div>
  10155.  
  10156.  
  10157.            </div>
  10158.  
  10159.            <div class="productitem--listview-badge">
  10160.              
  10161.  
  10162.  
  10163.  
  10164.  
  10165.  
  10166.  
  10167.  
  10168.  
  10169.  
  10170.  
  10171.  
  10172.  
  10173.  
  10174.  
  10175.  
  10176.  
  10177.  
  10178.  
  10179.  
  10180.  
  10181.  
  10182.  
  10183.  
  10184.  
  10185.  
  10186.  
  10187.  
  10188.            </div>
  10189.  
  10190.            
  10191.              <div
  10192.                class="
  10193.                  productitem--action
  10194.                  quickshop-button
  10195.                  
  10196.                "
  10197.              >
  10198.                <button
  10199.                  class="productitem--action-trigger button-secondary"
  10200.                  data-quickshop-full
  10201.                  
  10202.                  
  10203.                  type="button"
  10204.                >
  10205.                  Quick shop
  10206.                </button>
  10207.              </div>
  10208.            
  10209.  
  10210.            
  10211.              <div
  10212.                class="
  10213.                  productitem--action
  10214.                  atc--button
  10215.                  
  10216.                "
  10217.              >
  10218.                <button
  10219.                  class="productitem--action-trigger productitem--action-atc button-primary"
  10220.                  type="button"
  10221.                  aria-label="Add to cart"
  10222.                  
  10223.                    data-quick-buy
  10224.                  
  10225.                  data-variant-id="31550087692375"
  10226.                  
  10227.                >
  10228.                  <span class="atc-button--text">
  10229.                    Add to cart
  10230.                  </span>
  10231.                  <span class="atc-button--icon"><svg
  10232.  aria-hidden="true"
  10233.  focusable="false"
  10234.  role="presentation"
  10235.  width="26"
  10236.  height="26"
  10237.  viewBox="0 0 26 26"
  10238.  xmlns="http://www.w3.org/2000/svg"
  10239. >
  10240.  <g fill-rule="nonzero" fill="currentColor">
  10241.    <path d="M13 26C5.82 26 0 20.18 0 13S5.82 0 13 0s13 5.82 13 13-5.82 13-13 13zm0-3.852a9.148 9.148 0 1 0 0-18.296 9.148 9.148 0 0 0 0 18.296z" opacity=".29"/><path d="M13 26c7.18 0 13-5.82 13-13a1.926 1.926 0 0 0-3.852 0A9.148 9.148 0 0 1 13 22.148 1.926 1.926 0 0 0 13 26z"/>
  10242.  </g>
  10243. </svg></span>
  10244.                </button>
  10245.              </div>
  10246.            
  10247.          </div>
  10248.        
  10249.      
  10250.    </div>
  10251.  </div>
  10252.  
  10253.  
  10254.    <script type="application/json" data-quick-buy-settings>
  10255.      {
  10256.        "cart_redirection": true,
  10257.        "money_format": "${{amount}}"
  10258.      }
  10259.    </script>
  10260.