<!doctype html>
<html class="no-js no-touch" lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=AW-977549716"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'AW-977549716');
</script>
<!-- Google Tag Manager -->
<script>
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WDHHF23');
</script>
<!-- End Google Tag Manager -->
<script>
/**
* Author: shipon islam
* Version: 1.1.0
* Last Update: 17 Sep 2023
*/
(function() {
class GTM_DataLayer {
constructor() {
window.dataLayer = window.dataLayer || [];
this.formattedItemId = true;
this.miniCartButtonSelector = [
// 'a[href="/cart"]',
];
this.beginCheckoutbuttons = [
'button[name="checkout"]',
'.additional-checkout-buttons',
];
this.shopifyDeirectPaymentButtonLink = [
'.shopify-payment-button'
]
this.isAjaxCartIncrementDecrement = true;
this.addToWishListSelectors = {
'addWishListIcon': '',
'gridItemSelector': '',
'productLinkSelector': ''
}
this.quickViewSelector = {
'quickViewElement': '',
'gridItemSelector': '',
'productLinkSelector': ''
}
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}
this.countryCode = "CA";
this.collectData();
}
updateCart() {
fetch("/cart.js")
.then((response) => response.json())
.then((data) => {
this.cart = data;
});
}
collectData() {
this.customerData();
this.ajaxRequestData();
this.miniCartData();
this.beginCheckoutData();
this.addToWishListData();
this.quickViewData();
this.newsletterSignupData();
}
//logged in customer data
customerData() {
const currentUser = {};
window.dataLayer = window.dataLayer || [];
dataLayer.push({
customer: currentUser
})
}
// shipon_add_to_cart, shipon_remove_from_cart
ajaxRequestData() {
const self = this;
let originalFetch = window.fetch;
window.fetch = function () {
return originalFetch.apply(this, arguments).then((response) => {
if (response.ok) {
let cloneResponse = response.clone();
// add to cart
if (arguments[0].includes("/cart/add.js") || arguments[0].includes("/cart/add")) {
cloneResponse.text().then((text) => {
let item = JSON.parse(text);
self.singleCartItemDataLayer('shipon_add_to_cart', item);
self.updateCart();
});
}else if(arguments[0].includes("/cart/change")) {
cloneResponse.text().then((text) => {
let newCart = JSON.parse(text);
let newCartItems = newCart.items;
let oldCartItems = self.cart.items;
for(let i = 0; i < oldCartItems.length; i++) {
let item = oldCartItems[i];
let newItem = newCartItems.find(newItems => newItems.id === item.id);
if(newItem) {
if(newItem.quantity > item.quantity) {
// cart item increment
let quantity = (newItem.quantity - item.quantity);
let updatedItem = {...item, quantity}
self.singleCartItemDataLayer('shipon_add_to_cart', updatedItem);
self.updateCart();
}else if(newItem.quantity < item.quantity) {
// cart item decrement
let quantity = (item.quantity - newItem.quantity);
let updatedItem = {...item, quantity}
self.singleCartItemDataLayer('shipon_remove_from_cart', updatedItem);
self.updateCart();
}
}else {
self.singleCartItemDataLayer('shipon_remove_from_cart', item);
self.updateCart();
}
}
});
}
}
return response;
});
}
}
// shipon_view_cart
miniCartData() {
if(this.miniCartButtonSelector.length) {
let self = this;
this.miniCartButtonSelector.forEach((selector) => {
let miniCartButton = document.querySelector(selector);
if(miniCartButton) {
miniCartButton.addEventListener('click', () => {
self.cartItemsDataLayer('shipon_view_cart', self.cart);
});
}
});
}
}
// shipon_begin_checkout
beginCheckoutData() {
let self = this;
document.addEventListener('click', () => {
let targetElement = event.target.closest(self.beginCheckoutbuttons.join(', '));
if(targetElement) {
self.cartItemsDataLayer('shipon_begin_checkout', self.cart);
}
});
}
// shipon_view_cart, shipon_add_to_cart, shipon_remove_from_cart
viewCartPageData() {
this.cartItemsDataLayer('shipon_view_cart', this.cart);
//if cart quantity chagne reload page
if(!this.isAjaxCartIncrementDecrement) {
const self = this;
document.addEventListener('pointerdown', (event) => {
const target = event.target.closest('a[href*="/cart/change?"]');
if(target) {
const linkUrl = target.getAttribute('href');
const queryString = linkUrl.split("?")[1];
const urlParams = new URLSearchParams(queryString);
const newQuantity = urlParams.get("quantity");
const line = urlParams.get("line");
const cart_id = urlParams.get("id");
if(newQuantity && (line || cart_id)) {
let item = line ? {...self.cart.items[line - 1]} : self.cart.items.find(item => item.key === cart_id);
let event = 'shipon_add_to_cart';
if(newQuantity < item.quantity) {
event = 'shipon_remove_from_cart';
}
let quantity = Math.abs(newQuantity - item.quantity);
item['quantity'] = quantity;
self.singleCartItemDataLayer(event, item);
}
}
});
}
}
productSinglePage() {
}
collectionsPageData() {
var ecommerce = {
'items': [
]
};
ecommerce['item_list_id'] = null
ecommerce['item_list_name'] = null
this.cartItemsDataLayer('shipon_view_item_list', ecommerce);
}
// add to wishlist
addToWishListData() {
if(this.addToWishListSelectors && this.addToWishListSelectors.addWishListIcon) {
const self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
if(target.closest(self.addToWishListSelectors.addWishListIcon)) {
let pageULR = window.location.href.replace(/\?.+/, '');
let requestURL = undefined;
if(/\/products\/[^/]+$/.test(pageULR)) {
requestURL = pageULR;
} else if(self.addToWishListSelectors.gridItemSelector && self.addToWishListSelectors.productLinkSelector) {
let itemElement = target.closest(self.addToWishListSelectors.gridItemSelector);
if(itemElement) {
let linkElement = itemElement.querySelector(self.addToWishListSelectors.productLinkSelector);
if(linkElement) {
let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
if(link && /\/products\/[^/]+$/.test(link)) {
requestURL = link;
}
}
}
}
if(requestURL) {
fetch(requestURL + '.json')
.then(res => res.json())
.then(result => {
let data = result.product;
if(data) {
let dataLayerData = {
product_id: data.id,
variant_id: data.variants[0].id,
product_title: data.title,
quantity: 1,
final_price: parseFloat(data.variants[0].price) * 100,
total_discount: 0,
product_type: data.product_type,
vendor: data.vendor,
variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
sku: data.variants[0].sku,
}
self.singleCartItemDataLayer('shipon_add_to_wishlist', dataLayerData);
}
});
}
}
});
}
}
quickViewData() {
if(this.quickViewSelector.quickViewElement && this.quickViewSelector.gridItemSelector && this.quickViewSelector.productLinkSelector) {
const self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
if(target.closest(self.quickViewSelector.quickViewElement)) {
let requestURL = undefined;
let itemElement = target.closest(this.quickViewSelector.gridItemSelector );
if(itemElement) {
let linkElement = itemElement.querySelector(self.quickViewSelector.productLinkSelector);
if(linkElement) {
let link = linkElement.getAttribute('href').replace(/\?.+/g, '');
if(link && /\/products\/[^/]+$/.test(link)) {
requestURL = link;
}
}
}
if(requestURL) {
fetch(requestURL + '.json')
.then(res => res.json())
.then(result => {
let data = result.product;
if(data) {
let dataLayerData = {
product_id: data.id,
variant_id: data.variants[0].id,
product_title: data.title,
quantity: 1,
final_price: parseFloat(data.variants[0].price) * 100,
total_discount: 0,
product_type: data.product_type,
vendor: data.vendor,
variant_title: (data.variants[0].title !== 'Default Title') ? data.variants[0].title : undefined,
sku: data.variants[0].sku,
}
self.singleCartItemDataLayer('shipon_view_item', dataLayerData);
self.quickViewVariants = data.variants;
self.quickViewedItem = dataLayerData;
}
});
}
}
});
if(this.shopifyDeirectPaymentButtonLink.length) {
let self = this;
document.addEventListener('pointerdown', (event) => {
let target = event.target;
let checkoutButton = event.target.closest(this.shopifyDeirectPaymentButtonLink.join(', '));
if(self.quickViewVariants && self.quickViewedItem && self.quickViewVariants.length && checkoutButton) {
let checkoutForm = checkoutButton.closest('form[action*="/cart/add"]');
if(checkoutForm) {
let quantity = 1;
let varientInput = checkoutForm.querySelector('input[name="id"]');
let quantitySelector = checkoutForm.getAttribute('id');
if(quantitySelector) {
let quentityInput = document.querySelector('input[name="quantity"][form="'+quantitySelector+'"]');
if(quentityInput) {
quantity = +quentityInput.value;
}
}
if(varientInput) {
let variant_id = parseInt(varientInput.value);
if(variant_id) {
const variant = self.quickViewVariants.find(item => item.id === +variant_id);
if(variant && self.quickViewedItem) {
self.quickViewedItem['variant_id'] = variant_id;
self.quickViewedItem['variant_title'] = variant.title;
self.quickViewedItem['final_price'] = parseFloat(variant.price) * 100;
self.quickViewedItem['quantity'] = quantity;
self.singleCartItemDataLayer('shipon_add_to_cart', self.quickViewedItem);
self.singleCartItemDataLayer('shipon_begin_checkout', self.quickViewedItem);
}
}
}
}
}
});
}
}
}
// single item add in dataLyaer
singleCartItemDataLayer(event, item) {
dataLayer.push({ "ecommerce": null });
const dataLayerData = {
"event": event,
"ecommerce": {
"currency": this.cart.currency,
"value": +(((item.final_price / 100) * item.quantity).toFixed(2)),
"items": [{
"item_id": this.formattedItemId ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id,
"variant_id": item.variant_id.toString(),
"item_name": item.product_title,
"quantity": item.quantity,
"price": +((item.final_price / 100).toFixed(2)),
"discount": item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
}]
}
}
if(item.product_type) {
dataLayerData.ecommerce['items'][0]['item_category'] = item.product_type;
}
if(item.vendor) {
dataLayerData.ecommerce['items'][0]['item_brand'] = item.vendor;
}
if(item.variant_title && item.variant_title !== 'Default Title') {
dataLayerData.ecommerce['items'][0]['item_variant'] = item.variant_title;
}
if(item.sku) {
dataLayerData.ecommerce['items'][0]['sku'] = item.sku;
}
if(item.item_list_id) {
dataLayerData.ecommerce['items'][0]['item_list_id'] = item.item_list_id;
}
if(item.item_list_name) {
dataLayerData.ecommerce['items'][0]['item_list_name'] = item.item_list_name;
}
dataLayer.push(dataLayerData);
};
// multiple items add in dataLayer
cartItemsDataLayer(event, cart) {
dataLayer.push({ 'ecommerce': null });
const dataLayerData = {
'event': event,
'ecommerce': {
'currency': this.cart.currency,
'items': cart.items.map((item, index) => {
const itemDataLayerData = {
'index': index,
'item_id': this.formattedItemId ? `shopify_${this.countryCode}_${item.product_id}_${item.variant_id}` : item.product_id.toString(),
'variant_id': item.variant_id.toString(),
'item_name': item.product_title,
'quantity': item.quantity,
'price': +((item.final_price / 100).toFixed(2)),
'discount': item.total_discount ? +((item.total_discount / 100).toFixed(2)) : 0
}
if(item.product_type) {
itemDataLayerData['item_category'] = item.product_type;
}
if(item.vendor) {
itemDataLayerData['item_brand'] = item.vendor;
}
if(item.variant_title && item.variant_title !== 'Default Title') {
itemDataLayerData['item_variant'] = item.variant_title;
}
if(item.sku) {
itemDataLayerData['sku'] = item.sku;
}
if(item.item_list_name) {
itemDataLayerData['item_list_name'] = item.item_list_name;
}
if(item.item_list_id) {
itemDataLayerData['item_list_id'] = item.item_list_id;
}
return itemDataLayerData;
})
}
}
if(cart.total_price) {
dataLayerData['ecommerce']['value'] = +((cart.total_price / 100).toFixed(2))
}
if(cart.item_list_id) {
dataLayerData['ecommerce']['item_list_id'] = cart.item_list_id;
}
if(cart.item_list_name) {
dataLayerData['ecommerce']['item_list_name'] = cart.item_list_name;
}
dataLayer.push(dataLayerData);
}
// newsletters signup
newsletterSignupData() {
document.addEventListener('click', function(event) {
let target = event.target.closest('form[action^="/contact"] button[type="submit"]');
let targetForm = event.target.closest('form[action^="/contact"]');
if(target && targetForm) {
let email = targetForm.querySelector('input[type="email"]').value;
let formType = targetForm.querySelector('input[name="contact[tags]"]');
if(formType && formType.value === 'newsletter') {
let form_location = window.location.href;
let form_id = targetForm.getAttribute('id');
let form_classes = targetForm.getAttribute('class');
dataLayer.push({
event: 'newsletter_signup',
email: email,
form_location,
form_id,
form_classes
});
}
}
});
}
}
document.addEventListener('DOMContentLoaded', function() {
try{
new GTM_DataLayer();
}catch(error) {
console.log(error);
}
});
})();
</script>
<script>
window.Store = window.Store || {};
window.Store.id = 11386172;
</script>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<link rel="preconnect" href="https://cdn.shopify.com">
<link rel="preconnect" href="https://fonts.shopifycdn.com">
<link rel="preconnect" href="https://v.shopify.com">
<link rel="preconnect" href="https://cdn.shopifycloud.com">
<title>Original Laptop & Tablet Parts in Canada — LaptopParts.ca</title>
<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!">
<link rel="shortcut icon" href="//laptopparts.ca/cdn/shop/files/favicon_32x32.png?v=1635931652" type="image/png">
<link rel="canonical" href="https://laptopparts.ca/">
<meta name="viewport" content="width=device-width">
<meta property="og:site_name" content="LaptopParts.ca">
<meta property="og:url" content="https://laptopparts.ca/">
<meta property="og:title" content="Original Laptop & Tablet Parts in Canada">
<meta property="og:type" content="website">
<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!">
<meta
property="og:image"
content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
/>
<meta
property="og:image:secure_url"
content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_2540x630.png?v=1696410523"
/>
<meta property="og:image:width" content="2540" />
<meta property="og:image:height" content="630" />
<meta property="og:image:alt" content="Social media image" />
<meta name="twitter:site" content="@i/flow/login?redirect_after_login=%2FLaptopParts_ca">
<meta name="twitter:title" content="Original Laptop & Tablet Parts in Canada">
<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!">
<meta name="twitter:card" content="summary_large_image">
<meta
property="twitter:image"
content="https://laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_1200x600_crop_center.png?v=1696410523"
/>
<meta property="twitter:image:width" content="1200" />
<meta property="twitter:image:height" content="600" />
<meta property="twitter:image:alt" content="Social media image" />
<script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/preconnect_resources.js" type="text/javascript"></script>
<script src="//cdn.shopify.com/s/files/1/0762/0028/0340/t/1/assets/globo_checkout.js" type="text/javascript"></script>
<link rel="preload" href="//laptopparts.ca/cdn/fonts/nunito_sans/nunitosans_n7.5bd4fb9346d13afb61b3d78f8a1e9f31b128b3d9.woff2?h1=bGFwdG9wcGFydHMuY2E&h2=bGFwdG9wcGFydHNhdHAuYWNjb3VudC5teXNob3BpZnkuY29t&hmac=2ae13feb1dfd0d8ba6bfd71029ee92ac78d286ff7b755b57291941f31f1674e4" as="font" crossorigin="anonymous">
<link rel="preload" as="style" href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022">
<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">
<meta id="shopify-digital-wallet" name="shopify-digital-wallet" content="/11386172/digital_wallets/dialog">
<meta name="shopify-checkout-api-token" content="d20210e10f5cfcb163289d215c1a7239">
<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">
<script async="async" src="/checkouts/internal/preloads.js?locale=en-CA"></script>
<link rel="preconnect" href="https://shop.app" crossorigin="anonymous">
<script async="async" src="https://shop.app/checkouts/internal/preloads.js?locale=en-CA&shop_id=11386172" crossorigin="anonymous"></script>
<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>
<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>
<script>var Shopify = Shopify || {};
Shopify.shop = "laptoppartsatp.myshopify.com";
Shopify.locale = "en";
Shopify.currency = {"active":"CAD","rate":"1.0"};
Shopify.country = "CA";
Shopify.theme = {"name":"LaptopParts.ca |- Optimized","id":126947917911,"schema_name":"Empire","schema_version":"9.1.1","theme_store_id":838,"role":"main"};
Shopify.theme.handle = "null";
Shopify.theme.style = {"id":null,"handle":null};
Shopify.cdnHost = "laptopparts.ca/cdn";
Shopify.routes = Shopify.routes || {};
Shopify.routes.root = "/";</script>
<script type="module">!function(o){(o.Shopify=o.Shopify||{}).modules=!0}(window);</script>
<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>
<script>window.ShopifyPay = window.ShopifyPay || {};
window.ShopifyPay.apiHost = "shop.app\/pay";</script>
<script id="shop-js-analytics" type="application/json">{"pageType":"index"}</script>
<script>
window.Shopify = window.Shopify || {};
if (!window.Shopify.featureAssets) window.Shopify.featureAssets = {};
window.Shopify.featureAssets['shop-js'] = {"init-fed-cm":["modules/v2/client.init-fed-cm_B7N5t58S.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"shop-cash-offers":["modules/v2/client.shop-cash-offers_DKZypMed.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"init-shop-email-lookup-coordinator":["modules/v2/client.init-shop-email-lookup-coordinator_CQdN6R3Q.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"shop-toast-manager":["modules/v2/client.shop-toast-manager_C-D4kb6n.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"checkout-modal":["modules/v2/client.checkout-modal_BJ5GGSYO.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"avatar":["modules/v2/client.avatar_BTnouDA3.en.esm.js"],"init-customer-accounts-sign-up":["modules/v2/client.init-customer-accounts-sign-up_KbHJY843.en.esm.js","modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"init-shop-for-new-customer-accounts":["modules/v2/client.init-shop-for-new-customer-accounts_Cg6fa-pW.en.esm.js","modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"init-customer-accounts":["modules/v2/client.init-customer-accounts_DbS5bYqF.en.esm.js","modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"pay-button":["modules/v2/client.pay-button_CHxDndno.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js"],"shop-login-button":["modules/v2/client.shop-login-button_CaoM9Daz.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"shop-follow-button":["modules/v2/client.shop-follow-button_eWKGgmwL.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"lead-capture":["modules/v2/client.lead-capture_CI7rirGn.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"],"payment-terms":["modules/v2/client.payment-terms_CfTmszv_.en.esm.js","modules/v2/chunk.common_9bWy_6S0.esm.js","modules/v2/chunk.modal_RNRrOhqN.esm.js"]};
</script>
<script>(function() {
function asyncLoad() {
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"];
for (var i = 0; i < urls.length; i++) {
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = urls[i];
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
};
if(window.attachEvent) {
window.attachEvent('onload', asyncLoad);
} else {
window.addEventListener('load', asyncLoad, false);
}
})();</script>
<script id="__st">var __st={"a":11386172,"offset":-18000,"reqid":"fbffa270-12cb-4ff1-b418-608842b102d3-1736918324","pageurl":"laptopparts.ca\/?cmp_id=13044301122\u0026adg_id=123541517513\u0026kwd=laptop%20parts%20canada\u0026device=m\u0026gad_source=1\u0026gclid=CjwKCAjwwr6wBhBcEiwAfMEQsynlagEAbr8GrTXPMV4tVqn9qORhy7vVcB6guv1Yi5gnQoPMQZp6choC9T4QAvD_BwE","u":"1bc1d29e14b1","p":"home"};</script>
<script>window.ShopifyPaypalV4VisibilityTracking = true;</script>
<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)}const i='password',u='form_key',d=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',i],f=()=>{try{return window.sessionStorage}catch{return}},m='__shopify_v',_=t=>t.elements[u];function p(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=function(t){const{data:e,action:n}=t;return t[m]||n?{data:e,action:n}:{data:t,action:n}}(c);for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch(o){console.error('form repopulation failed',{error:o})}}const l='form_type',E='cptcha';function T(t){t.dataset[E]=!0}const w=window,h=w.document,L='Shopify',v='ce_forms',y='captcha';let A=!1;((t,e)=>{const n=(g='f06e6c50-85a8-45c8-87d0-21a2b65856fe',I='https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.2.iife.js',D={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=w[L][v],c=o.bindForm;if(c)return c(t,g,e,D).then(n);var r;o.q.push([[t,g,e,D],n]),r=I,A||(h.body.append(Object.assign(h.createElement('script'),{id:'captcha-provider',async:!0,src:r})),A=!0)});var g,I,D;w[L]=w[L]||{},w[L][v]=w[L][v]||{},w[L][v].q=[],w[L][y]=w[L][y]||{},w[L][y].protect=function(t,e){n(t,void 0,e),T(t)},Object.freeze(w[L][y]),function(t,e,n,w,h,L){const[v,y,A,g]=function(t,e,n){const i=e?o:[],u=t?c:[],d=[...i,...u],f=r(d),m=r(i),_=r(d.filter((([t,e])=>n.includes(e))));return[a(f),a(m),a(_),s()]}(w,h,L),I=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},D=t=>v().includes(t);t.addEventListener('submit',(t=>{const e=I(t);if(!e)return;const n=D(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=_(e),c=g().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!f())return;!function(t){const e=f();if(!e)return;const n=_(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){_(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:u})),t.elements[u].value=e}(t,e),function(t,e){const n=f();if(!n)return;const o=[...t.querySelectorAll(`input[type='${i}']`)].map((({name:t})=>t)),c=[...d,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({[m]:1,action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const S=(t,e)=>{t&&!t.dataset[E]&&(n(t,e.some((e=>e===t))),T(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=I(t);D(e)&&S(e,y())}));const B=e.get('form_key'),M=e.get(l),P=B&&M;t.addEventListener('DOMContentLoaded',(()=>{const t=y();if(P)for(const e of t)e.elements[l].value===M&&p(e,B);[...new Set([...A(),...v().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>S(e,t)))}))}(h,new URLSearchParams(w.location.search),n,t,e,['guest_login'])})(!1,!0)}();</script>
<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>
<script crossorigin="anonymous" defer="defer" src="//laptopparts.ca/cdn/shopifycloud/shopify/assets/shopify_pay/storefront-80e528be853eac23af2454534897ca9536b1d3d04aa043b042f34879a3c111c8.js?v=20220906"></script>
<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)}};
</script>
<script data-source-attribution="shopify.dynamic_checkout.buyer_consent">
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);
</script>
<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})}}));
</script>
<style id="shopify-accelerated-checkout-cart">
#dynamic-checkout-cart {
container-type: inline-size;
container-name: dcc;
width: 100%;
}
.wallet-cart-grid {
--wallet-button-height-horizontal: clamp(
25px,
var(
--shopify-accelerated-checkout-button-inline-size,
42px
),
55px
);
--wallet-button-height-vertical: clamp(
25px,
var(
--shopify-accelerated-checkout-button-block-size,
54px
),
55px
);
--wallet-button-width-horizontal: 150px;
--wallet-button-width-vertical: 100%;
--wallet-button-border-radius: var(
--shopify-accelerated-checkout-button-border-radius,
4px
);
--wallet-grid-margin-horizontal: 0 -5px -5px -5px;
--wallet-button-container-margin-horizontal: 0 5px 5px;
--wallet-button-container-margin-vertical: var(--shopify-accelerated-checkout-row-gap, 8px) 0 0;
}
@keyframes acceleratedCheckoutLoadingSkeleton {
50% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
75% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-end, 0.5);}
100% {opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);}
}
.wallet-cart-button__skeleton {
animation: acceleratedCheckoutLoadingSkeleton var(--shopify-accelerated-checkout-skeleton-animation-duration, 4s) var(--shopify-accelerated-checkout-skeleton-animation-timing-function, ease) infinite;
animation-delay: -0.168s;
background-color: var(--shopify-accelerated-checkout-skeleton-background-color, #dedede);
box-sizing: border-box;
text-decoration: none !important;
}
.wallet-cart-grid {
margin: var(--wallet-grid-margin-horizontal);
padding: 0;
display: flex;
flex-direction: row;
justify-content: var(--shopify-accelerated-checkout-inline-alignment, start);
gap: 0 !important;
}
.wallet-cart-grid--skeleton {
justify-content: var(--shopify-accelerated-checkout-inline-alignment, inherit);
}
.wallet-cart-button-container {
position: relative;
margin: var(--wallet-button-container-margin-horizontal);
}
.wallet-cart-button-container,
.wallet-cart-button {
width: var(--wallet-button-width-horizontal);
height: var(--wallet-button-height-horizontal);
border-radius: var(--wallet-button-border-radius);
list-style-type: none !important;
text-align: center;
flex-shrink: 0;
flex-grow: 0;
}
.additional-checkout-buttons--vertical .wallet-cart-grid {
justify-content: start;
flex-direction: column;
margin: 0;
}
.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 0;
}
.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
.additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button-container,
.additional-checkout-buttons--horizontal .wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-horizontal) !important;
height: var(--wallet-button-height-horizontal) !important;
border-radius: var(--wallet-button-border-radius) !important;
}
@container dcc (width >= 150px) and (width <= 500px) {
.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))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.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 {
margin-top: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 310px) {
.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))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.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 {
margin-top: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 470px) {
.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))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.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 {
margin-top: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 630px) {
.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))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.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 {
margin-top: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@container dcc (width <= 790px) {
.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))) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.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 {
margin-top: 0;
}
.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 {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
@media screen and (max-width: 750px) {
.wallet-cart-grid {
justify-content: start;
flex-direction: column;
max-width: none;
margin: 0;
}
.wallet-cart-grid .wallet-cart-button-container {
max-width: none;
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
@supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
.wallet-cart-grid {
justify-content: start;
flex-direction: column;
margin: 0;
}
.wallet-cart-button-container {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
margin: var(--wallet-button-container-margin-vertical);
}
.wallet-cart-button-container:first-child {
margin-top: 0;
}
.wallet-cart-grid .wallet-cart-button {
width: var(--wallet-button-width-vertical);
height: var(--wallet-button-height-vertical);
}
}
#shopify-buyer-consent {
margin-top: 1em;
display: inline-block;
width: 100%;
}
#shopify-buyer-consent.hidden {
display: none;
}
#shopify-subscription-policy-button {
background: none;
border: none;
padding: 0;
text-decoration: underline;
font-size: inherit;
cursor: pointer;
}
#shopify-subscription-policy-button::before {
box-shadow: none;
}
</style>
<style id="shopify-accelerated-checkout-cart-grid-with-margin-top">.additional-checkout-buttons--vertical .wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 8px;
}
@container dcc (width >= 150px) and (width <= 500px) {
.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 {
margin-top: 8px;
}
}
@container dcc (width <= 310px) {
.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 {
margin-top: 8px;
}
}
@container dcc (width <= 470px) {
.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 {
margin-top: 8px;
}
}
@container dcc (width <= 630px) {
.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 {
margin-top: 8px;
}
}
@container dcc (width <= 790px) {
.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 {
margin-top: 8px;
}
}
.wallet-cart-grid:has(>.wallet-cart-button-container:nth-of-type(6)) .wallet-cart-button-container:first-child {
margin-top: 8px;
}
@media screen and (max-width: 750px) {
.wallet-cart-grid .wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
@supports (not (container-type: inline-size)) or (not (selector(:has(*)))) {
.wallet-cart-button-container:first-child {
margin-top: 8px;
}
}
</style>
<script>window.performance && window.performance.mark && window.performance.mark('shopify.content_for_header.end');</script>
<link href="//laptopparts.ca/cdn/shop/t/20/assets/theme.css?v=25513099264981955301712444022" rel="stylesheet" type="text/css" media="all" />
<script>
window.Theme = window.Theme || {};
window.Theme.version = '9.1.1';
window.Theme.name = 'Empire';
window.Theme.routes = {
"root_url": "/",
"account_url": "/account",
"account_login_url": "/account/login",
"account_logout_url": "/account/logout",
"account_register_url": "/account/register",
"account_addresses_url": "/account/addresses",
"collections_url": "/collections",
"all_products_collection_url": "/collections/all",
"search_url": "/search",
"predictive_search_url": "/search/suggest",
"cart_url": "/cart",
"cart_add_url": "/cart/add",
"cart_change_url": "/cart/change",
"cart_clear_url": "/cart/clear",
"product_recommendations_url": "/recommendations/products",
};
</script>
<script src="https://cdn.shopify.com/extensions/6164864d-a0a4-43c5-a182-8fdf3f87b744/upcart-cart-drawer-81/assets/upcart-bundle.js" type="text/javascript" defer="defer"></script>
<link href="https://monorail-edge.shopifysvc.com" rel="dns-prefetch">
<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>
<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","684b8cf904d0e57fafa86f386463aa1b280f6e55","ac78c151w8bf023f7pfbfb601fmf9d3fb59",);</script> <script>window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'CAD';
var meta = {"page":{"pageType":"home"}};
for (var attr in meta) {
window.ShopifyAnalytics.meta[attr] = meta[attr];
}</script>
<script>window.ShopifyAnalytics.merchantGoogleAnalytics = function() {
};
</script>
<script class="analytics">(function () {
var customDocumentWrite = function(content) {
var jquery = null;
if (window.jQuery) {
jquery = window.jQuery;
} else if (window.Checkout && window.Checkout.$) {
jquery = window.Checkout.$;
}
if (jquery) {
jquery('body').append(content);
}
};
var hasLoggedConversion = function(token) {
if (token) {
return document.cookie.indexOf('loggedConversion=' + token) !== -1;
}
return false;
}
var setCookieIfConversion = function(token) {
if (token) {
var twoMonthsFromNow = new Date(Date.now());
twoMonthsFromNow.setMonth(twoMonthsFromNow.getMonth() + 2);
document.cookie = 'loggedConversion=' + token + '; expires=' + twoMonthsFromNow;
}
}
var trekkie = window.ShopifyAnalytics.lib = window.trekkie = window.trekkie || [];
if (trekkie.integrations) {
return;
}
trekkie.methods = [
'identify',
'page',
'ready',
'track',
'trackForm',
'trackLink'
];
trekkie.factory = function(method) {
return function() {
var args = Array.prototype.slice.call(arguments);
args.unshift(method);
trekkie.push(args);
return trekkie;
};
};
for (var i = 0; i < trekkie.methods.length; i++) {
var key = trekkie.methods[i];
trekkie[key] = trekkie.factory(key);
}
trekkie.load = function(config) {
trekkie.config = config || {};
trekkie.config.initialDocumentCookie = document.cookie;
var first = document.getElementsByTagName('script')[0];
var script = document.createElement('script');
script.type = 'text/javascript';
script.onerror = function(e) {
var scriptFallback = document.createElement('script');
scriptFallback.type = 'text/javascript';
scriptFallback.onerror = function(error) {
var Monorail = {
produce: function produce(monorailDomain, schemaId, payload) {
var currentMs = new Date().getTime();
var event = {
schema_id: schemaId,
payload: payload,
metadata: {
event_created_at_ms: currentMs,
event_sent_at_ms: currentMs
}
};
return Monorail.sendRequest("https://" + monorailDomain + "/v1/produce", JSON.stringify(event));
},
sendRequest: function sendRequest(endpointUrl, payload) {
// Try the sendBeacon API
if (window && window.navigator && typeof window.navigator.sendBeacon === 'function' && typeof window.Blob === 'function' && !Monorail.isIos12()) {
var blobData = new window.Blob([payload], {
type: 'text/plain'
});
if (window.navigator.sendBeacon(endpointUrl, blobData)) {
return true;
} // sendBeacon was not successful
} // XHR beacon
var xhr = new XMLHttpRequest();
try {
xhr.open('POST', endpointUrl);
xhr.setRequestHeader('Content-Type', 'text/plain');
xhr.send(payload);
} catch (e) {
console.log(e);
}
return false;
},
isIos12: function isIos12() {
return window.navigator.userAgent.lastIndexOf('iPhone; CPU iPhone OS 12_') !== -1 || window.navigator.userAgent.lastIndexOf('iPad; CPU OS 12_') !== -1;
}
};
Monorail.produce('monorail-edge.shopifysvc.com',
'trekkie_storefront_load_errors/1.1',
{shop_id: 11386172,
theme_id: 126947917911,
app_name: "storefront",
context_url: window.location.href,
source_url: "//laptopparts.ca/cdn/s/trekkie.storefront.b004b8439e365cda50b40471636997447684bbe3.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.b004b8439e365cda50b40471636997447684bbe3.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.b004b8439e365cda50b40471636997447684bbe3.min.js';
first.parentNode.insertBefore(script, first);
};
trekkie.load(
{"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}}
);
var loaded = false;
trekkie.ready(function() {
if (loaded) return;
loaded = true;
window.ShopifyAnalytics.lib = window.trekkie;
var originalDocumentWrite = document.write;
document.write = customDocumentWrite;
try { window.ShopifyAnalytics.merchantGoogleAnalytics.call(this); } catch(error) {};
document.write = originalDocumentWrite;
window.ShopifyAnalytics.lib.page(null,{"pageType":"home"});
var match = window.location.pathname.match(/checkouts\/(.+)\/(thank_you|post_purchase)/)
var token = match? match[1]: undefined;
if (!hasLoggedConversion(token)) {
setCookieIfConversion(token);
}
});
var eventsListenerScript = document.createElement('script');
eventsListenerScript.async = true;
eventsListenerScript.src = "//laptopparts.ca/cdn/shopifycloud/shopify/assets/shop_events_listener-20905db421adb60b04582abab58b285362bc2e1011d17cd3eabb3bfe05798c59.js";
document.getElementsByTagName('head')[0].appendChild(eventsListenerScript);
})();</script>
<script class="boomerang">
(function () {
window.BOOMR = window.BOOMR || {};
window.BOOMR.themeName = "Empire";
window.BOOMR.themeVersion = "9.1.1";
window.BOOMR.shopId = 11386172;
window.BOOMR.themeId = 126947917911;
})();</script>
<script
defer
src="https://laptopparts.ca/cdn/shopifycloud/perf-kit/shopify-perf-kit-1.1.0.min.js"
data-application="storefront-renderer"
data-shop-id="11386172"
data-render-region="gcp-us-east1"
data-page-type="index"
data-theme-instance-id="126947917911"
data-monorail-region="shop_domain"
data-resource-timing-sampling-rate="10"
></script>
</head>
<body
class="template-index"
data-instant-allow-query-string
>
<script>
document.documentElement.className=document.documentElement.className.replace(/\bno-js\b/,'js');
if(window.Shopify&&window.Shopify.designMode)document.documentElement.className+=' in-theme-editor';
if(('ontouchstart' in window)||window.DocumentTouch&&document instanceof DocumentTouch)document.documentElement.className=document.documentElement.className.replace(/\bno-touch\b/,'has-touch');
</script>
<!-- Google Tag Manager (noscript) -->
<noscript
><iframe
loading="lazy"
src="https://www.googletagmanager.com/ns.html?id=GTM-WDHHF23"
height="0"
width="0"
style="display:none;visibility:hidden"
></iframe
></noscript>
<!-- End Google Tag Manager (noscript) -->
<svg
class="icon-star-reference"
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="3 3 17 17"
fill="none"
>
<symbol id="icon-star">
<rect class="icon-star-background" width="20" height="20" fill="currentColor"/>
<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"/>
</symbol>
<clipPath id="icon-star-clip">
<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"/>
</clipPath>
</svg>
<a class="skip-to-main" href="#site-main">Skip to content</a>
<!-- BEGIN sections: header-group -->
<div id="shopify-section-sections--15492291133527__announcement-bar" class="shopify-section shopify-section-group-header-group site-announcement"><script
type="application/json"
data-section-id="sections--15492291133527__announcement-bar"
data-section-type="static-announcement">
</script>
<div
class="
announcement-bar
"
style="
color: #ffffff;
background: #fe0000;
"
data-announcement-bar
>
<div class="announcement-bar-text">
📞 <b>Text us at 613-704-4708</b>
<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>
</div>
<div class="announcement-bar-text-mobile">
📞 <b>Text us at 613-704-4708</b>
<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>
</div>
</div>
</div><div id="shopify-section-sections--15492291133527__header" class="shopify-section shopify-section-group-header-group site-header-wrapper">
<script
type="application/json"
data-section-id="sections--15492291133527__header"
data-section-type="static-header"
data-section-data>
{
"settings": {
"sticky_header": false,
"has_box_shadow": false,
"live_search": {
"enable": true,
"money_format": "${{amount}}",
"show_mobile_search_bar": false
}
}
}
</script>
<style data-shopify>
.site-logo {
max-width: 250px;
}
.site-logo-image {
max-height: 100px;
}
</style>
<header
class="site-header site-header-nav--open"
role="banner"
data-site-header
>
<div
class="
site-header-main
site-header--full-width
"
data-site-header-main
data-site-header-mobile-search-button
>
<button class="site-header-menu-toggle" data-menu-toggle>
<div class="site-header-menu-toggle--button" tabindex="-1">
<span class="toggle-icon--bar toggle-icon--bar-top"></span>
<span class="toggle-icon--bar toggle-icon--bar-middle"></span>
<span class="toggle-icon--bar toggle-icon--bar-bottom"></span>
<span class="visually-hidden">Menu</span>
</div>
</button>
<button
class="site-header-mobile-search-button"
data-mobile-search-button
>
<div class="site-header-mobile-search-button--button" tabindex="-1">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="23"
height="24"
fill="none"
viewBox="0 0 23 24"
>
<path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
<circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
</svg>
</div>
</button>
<div
class="
site-header-main-content
"
>
<div class="site-header-logo">
<a
class="site-logo"
href="/">
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523"
alt=""
data-rimg
srcset="//laptopparts.ca/cdn/shop/files/LAPTOPPARTS_new_500x124.png?v=1696410523 1x"
class="site-logo-image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</a>
</div>
<div class="live-search" data-live-search><form
class="
live-search-form
form-fields-inline
"
action="/search"
method="get"
role="search"
aria-label="Product"
data-live-search-form
>
<div class="form-field no-label"><span class="form-field-select-wrapper live-search-filter-wrapper">
<select class="live-search-filter" data-live-search-filter data-filter-all="All categories">
<option value="" selected>All categories</option>
<option value="" disabled>------</option>
<option value="product_type:AC Adapters">AC Adapters</option>
<option value="product_type:Accessories">Accessories</option>
<option value="product_type:Adapter Card">Adapter Card</option>
<option value="product_type:Antennas">Antennas</option>
<option value="product_type:Appliances > Fans">Appliances > Fans</option>
<option value="product_type:Batteries">Batteries</option>
<option value="product_type:Bezels Cases & Covers">Bezels Cases & Covers</option>
<option value="product_type:Boards">Boards</option>
<option value="product_type:Cables">Cables</option>
<option value="product_type:Cases Covers & Bezels">Cases Covers & Bezels</option>
<option value="product_type:Connectors">Connectors</option>
<option value="product_type:DC Jack Cables">DC Jack Cables</option>
<option value="product_type:Docking Station">Docking Station</option>
<option value="product_type:Drives">Drives</option>
<option value="product_type:Fans">Fans</option>
<option value="product_type:Hard Drive Brackets">Hard Drive Brackets</option>
<option value="product_type:Hard Drive Disk Caddy">Hard Drive Disk Caddy</option>
<option value="product_type:Hard Drives">Hard Drives</option>
<option value="product_type:Hinges">Hinges</option>
<option value="product_type:Keyboards">Keyboards</option>
<option value="product_type:Memory">Memory</option>
<option value="product_type:Misc">Misc</option>
<option value="product_type:Motherboards">Motherboards</option>
<option value="product_type:Network Cards">Network Cards</option>
<option value="product_type:Optical Cables">Optical Cables</option>
<option value="product_type:Optical Drives">Optical Drives</option>
<option value="product_type:Palmrests">Palmrests</option>
<option value="product_type:Parts">Parts</option>
<option value="product_type:Phone Parts">Phone Parts</option>
<option value="product_type:Power Supplies">Power Supplies</option>
<option value="product_type:POWER SUPPLY">POWER SUPPLY</option>
<option value="product_type:Printer Parts">Printer Parts</option>
<option value="product_type:Screens">Screens</option>
<option value="product_type:Screens - Touch Digitizers">Screens - Touch Digitizers</option>
<option value="product_type:Screws">Screws</option>
<option value="product_type:Server Parts">Server Parts</option>
<option value="product_type:Short Low Profile Bracket">Short Low Profile Bracket</option>
<option value="product_type:Speakers">Speakers</option>
<option value="product_type:Tablet Parts">Tablet Parts</option>
<option value="product_type:Touchpads">Touchpads</option>
<option value="product_type:UpCart - Shipping Protection">UpCart - Shipping Protection</option>
<option value="product_type:Wireless Mouse Receiver">Wireless Mouse Receiver</option>
</select>
<label class="live-search-filter-label form-field-select" data-live-search-filter-label>All categories
</label>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="8"
height="6"
viewBox="0 0 8 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>
</span><input
class="form-field-input live-search-form-field"
type="text"
name="q"
aria-label="Search"
placeholder="What are you looking for?"
autocomplete="off"
data-live-search-input
>
<button
class="live-search-takeover-cancel"
type="button"
data-live-search-takeover-cancel>
Cancel
</button>
<button
class="live-search-button"
type="submit"
aria-label="Search"
data-live-search-submit
>
<span class="search-icon search-icon--inactive">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="23"
height="24"
fill="none"
viewBox="0 0 23 24"
>
<path d="M21 21L15.5 15.5" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
<circle cx="10" cy="9" r="8" stroke="currentColor" stroke-width="2"/>
</svg>
</span>
<span class="search-icon search-icon--active">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg>
</span>
</button>
</div>
<div class="search-flydown" data-live-search-flydown>
<div class="search-flydown--placeholder" data-live-search-placeholder>
<div class="search-flydown--product-items">
<a class="search-flydown--product search-flydown--product" href="#">
<div class="search-flydown--product-image">
<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>
</div>
<div class="search-flydown--product-text">
<span class="search-flydown--product-title placeholder--content-text"></span>
<span class="search-flydown--product-price placeholder--content-text"></span>
</div>
</a>
<a class="search-flydown--product search-flydown--product" href="#">
<div class="search-flydown--product-image">
<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>
</div>
<div class="search-flydown--product-text">
<span class="search-flydown--product-title placeholder--content-text"></span>
<span class="search-flydown--product-price placeholder--content-text"></span>
</div>
</a>
<a class="search-flydown--product search-flydown--product" href="#">
<div class="search-flydown--product-image">
<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>
</div>
<div class="search-flydown--product-text">
<span class="search-flydown--product-title placeholder--content-text"></span>
<span class="search-flydown--product-price placeholder--content-text"></span>
</div>
</a>
</div>
</div>
<div
class="
search-flydown--results
"
data-live-search-results
></div>
</div>
</form>
</div>
</div>
<div class="site-header-right">
<ul class="site-header-actions" data-header-actions>
<li class="site-header-actions__account-link">
<a
class="site-header_account-link-anchor"
href="/account/login"
>
<span class="site-header__account-icon">
<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>
</span>
<span class="site-header_account-link-text">
Login
</span>
</a>
</li>
</ul>
<div class="site-header-cart">
<a class="site-header-cart--button" href="/cart">
<span
class="site-header-cart--count "
data-header-cart-count="">
</span>
<span class="site-header-cart-icon site-header-cart-icon--svg">
<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>
</span>
<span class="visually-hidden">View cart</span>
</a>
</div>
</div>
</div>
<div
class="
site-navigation-wrapper
site-navigation--has-actions
site-header--full-width
"
data-site-navigation
id="site-header-nav"
>
<nav
class="site-navigation"
aria-label="Main"
>
<ul
class="navmenu navmenu-depth-1"
data-navmenu
aria-label="Main Menu 02"
>
<li
class="navmenu-item navmenu-basic__item navmenu-id-home"
>
<a
class="
navmenu-link
navmenu-link-depth-1
navmenu-link-active
"
href="/"
>
Home
</a>
</details>
</li>
<li
class="navmenu-item navmenu-item-parent navmenu-meganav__item-parent navmenu-id-shop"
data-navmenu-meganav-trigger
data-navmenu-meganav-type="multi-column-menu"
data-navmenu-parent
>
<details data-navmenu-details>
<summary
class="
navmenu-link
navmenu-link-depth-1
navmenu-link-parent
"
aria-haspopup="true"
aria-expanded="false"
data-href="/collections/all"
>
Shop
<span
class="navmenu-icon navmenu-icon-depth-1"
data-navmenu-trigger
>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="8"
height="6"
viewBox="0 0 8 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>
</span>
</summary>
<div
class="navmenu-submenu navmenu-meganav navmenu-meganav--desktop"
data-navmenu-submenu
data-meganav-menu
data-meganav-id="3b13d0a4-b646-40a2-af69-91c68056aced"
>
<div class="navmenu-meganav-wrapper navmenu-multi-column-items">
<ul class="navmenu navmenu-depth-2 multi-column-count-5">
<li class="navmenu-item">
<a href="/collections/all" class="navmenu-link navmenu-link-parent">
Laptop Components
</a>
<ul>
<li class="navmenu-item">
<a href="/collections/ac-adapters" class="navmenu-link">
AC Adapters
</a>
</li>
<li class="navmenu-item">
<a href="/collections/batteries" class="navmenu-link">
Batteries
</a>
</li>
<li class="navmenu-item">
<a href="/collections/cases-covers-bezels" class="navmenu-link">
Bezels Cases & Covers
</a>
</li>
<li class="navmenu-item">
<a href="/collections/boards" class="navmenu-link">
Boards
</a>
</li>
<li class="navmenu-item">
<a href="/collections/cables" class="navmenu-link">
Cables
</a>
</li>
<li class="navmenu-item">
<a href="/collections/dc-jack-cables" class="navmenu-link">
DC Jack Cables
</a>
</li>
<li class="navmenu-item">
<a href="/collections/fans" class="navmenu-link">
Fans
</a>
</li>
<li class="navmenu-item">
<a href="/collections/hard-drive-brackets" class="navmenu-link">
Hard Drive Brackets
</a>
</li>
<li class="navmenu-item">
<a href="/collections/laptop-hard-drive" class="navmenu-link">
Hard Drives
</a>
</li>
<li class="navmenu-item">
<a href="/collections/laptop-case-parts" class="navmenu-link">
- Laptop Case Parts
</a>
</li>
<li class="navmenu-item">
<a href="/collections/hinges" class="navmenu-link">
Hinges
</a>
</li>
<li class="navmenu-item">
<a href="/collections/laptop-case" class="navmenu-link">
Laptop Case
</a>
</li>
<li class="navmenu-item">
<a href="/collections/laptop-cover" class="navmenu-link">
Laptop Cover
</a>
</li>
<li class="navmenu-item">
<a href="/collections/thermal-printer" class="navmenu-link">
Thermal Printer
</a>
</li>
</ul>
</li>
<li class="navmenu-item">
<a href="/collections/all" class="navmenu-link navmenu-link-parent">
.....
</a>
<ul>
<li class="navmenu-item">
<a href="/collections/keyboards-1" class="navmenu-link">
Keyboards
</a>
</li>
<li class="navmenu-item">
<a href="/collections/acer-keyboard" class="navmenu-link">
- Acer keyboard
</a>
</li>
<li class="navmenu-item">
<a href="/collections/asus-keyboard" class="navmenu-link">
- Asus keyboards
</a>
</li>
<li class="navmenu-item">
<a href="/collections/dell-keyboard" class="navmenu-link">
- Dell keyboard
</a>
</li>
<li class="navmenu-item">
<a href="/collections/lenovo-keyboard" class="navmenu-link">
- Lenovo keyboard
</a>
</li>
<li class="navmenu-item">
<a href="/collections/hp-keyboard" class="navmenu-link">
- Hp Keyboard
</a>
</li>
<li class="navmenu-item">
<a href="/collections/backlit-keyboard" class="navmenu-link">
- Backlit Keyboards
</a>
</li>
<li class="navmenu-item">
<a href="/collections/memory" class="navmenu-link">
Memory
</a>
</li>
<li class="navmenu-item">
<a href="/collections/motherboards" class="navmenu-link">
Motherboards
</a>
</li>
<li class="navmenu-item">
<a href="/collections/optical-drives" class="navmenu-link">
Optical Drives
</a>
</li>
<li class="navmenu-item">
<a href="/collections/power-supplies" class="navmenu-link">
Power Supplies
</a>
</li>
<li class="navmenu-item">
<a href="/collections/screens" class="navmenu-link">
Screens
</a>
</li>
<li class="navmenu-item">
<a href="/collections/touch-screen-laptop" class="navmenu-link">
- Touch Screen Laptop
</a>
</li>
<li class="navmenu-item">
<a href="/collections/screens-touch-digitizers" class="navmenu-link">
Screens - Touch Digitizers
</a>
</li>
<li class="navmenu-item">
<a href="/collections/speakers" class="navmenu-link">
Speakers
</a>
</li>
<li class="navmenu-item">
<a href="/collections/touchpads" class="navmenu-link">
Touchpads
</a>
</li>
</ul>
</li>
<li class="navmenu-item">
<a href="/collections/all" class="navmenu-link navmenu-link-parent">
Other Components
</a>
<ul>
<li class="navmenu-item">
<a href="/collections/accessories" class="navmenu-link">
Accessories
</a>
</li>
<li class="navmenu-item">
<a href="/collections/phone-parts" class="navmenu-link">
Phone Parts
</a>
</li>
<li class="navmenu-item">
<a href="/collections/printer-parts" class="navmenu-link">
Printer Parts
</a>
</li>
<li class="navmenu-item">
<a href="/collections/server-parts" class="navmenu-link">
Server Parts
</a>
</li>
<li class="navmenu-item">
<a href="/collections/tablet-parts" class="navmenu-link">
Tablet Parts
</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
</details>
</li>
<li
class="navmenu-item navmenu-basic__item navmenu-id-about-us"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/about-us"
>
About Us
</a>
</details>
</li>
<li
class="navmenu-item navmenu-basic__item navmenu-id-repair-centers"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/store-locator"
>
Repair Centers
</a>
</details>
</li>
<li
class="navmenu-item navmenu-basic__item navmenu-id-parts-request"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/part-request"
>
Parts Request
</a>
</details>
</li>
<li
class="navmenu-item navmenu-basic__item navmenu-id-shipping"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/shipping"
>
Shipping
</a>
</details>
</li>
<li
class="navmenu-item navmenu-basic__item navmenu-id-francais"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/francais"
>
Français
</a>
</details>
</li>
</ul>
</nav>
</div>
<div class="site-mobile-nav" id="site-mobile-nav" data-mobile-nav tabindex="0">
<div class="mobile-nav-panel" data-mobile-nav-panel>
<ul class="site-header-actions" data-header-actions>
<li class="site-header-actions__account-link">
<a
class="site-header_account-link-anchor"
href="/account/login"
>
<span class="site-header__account-icon">
<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>
</span>
<span class="site-header_account-link-text">
Login
</span>
</a>
</li>
</ul>
<a
class="mobile-nav-close"
href="#site-header-nav"
data-mobile-nav-close>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="13"
height="13"
viewBox="0 0 13 13"
>
<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"/>
</svg>
<span class="visually-hidden">Close</span>
</a>
<div class="mobile-nav-content" data-mobile-nav-content>
<ul
class="navmenu navmenu-depth-1"
data-navmenu
aria-label="Main Menu 02"
>
<li
class="navmenu-item navmenu-id-home"
>
<a
class="navmenu-link navmenu-link-active"
href="/"
>
Home
</a>
</li>
<li
class="navmenu-item navmenu-item-parent navmenu-id-shop"
data-navmenu-parent
>
<a
class="navmenu-link navmenu-link-parent "
href="/collections/all"
aria-haspopup="true"
aria-expanded="false"
>
Shop
</a>
<button
class="navmenu-button"
data-navmenu-trigger
aria-expanded="false"
>
<div class="navmenu-button-wrapper" tabindex="-1">
<span class="navmenu-icon ">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="8"
height="6"
viewBox="0 0 8 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>
</span>
<span class="visually-hidden">Shop</span>
</div>
</button>
<ul
class="
navmenu
navmenu-depth-2
navmenu-submenu
"
data-navmenu
data-accordion-content
data-navmenu-submenu
aria-label="Main Menu 02"
>
<li
class="navmenu-item navmenu-item-parent navmenu-id-laptop-components"
data-navmenu-parent
>
<a
href="/collections/all"
class="navmenu-link navmenu-link-parent "
aria-haspopup="true"
aria-expanded="false"
>
Laptop Components
</a>
<button
class="navmenu-button"
data-navmenu-trigger
aria-expanded="false"
>
<div class="navmenu-button-wrapper" tabindex="-1">
<span class="navmenu-icon navmenu-icon-depth-2">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="8"
height="6"
viewBox="0 0 8 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>
</span>
<span class="visually-hidden">Laptop Components</span>
</div>
</button>
<ul
class="
navmenu
navmenu-depth-3
navmenu-submenu
"
data-navmenu
data-accordion-content
data-navmenu-submenu
aria-label="Main Menu 02"
>
<li
class="navmenu-item navmenu-id-ac-adapters"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/ac-adapters"
>
AC Adapters
</a>
</li>
<li
class="navmenu-item navmenu-id-batteries"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/batteries"
>
Batteries
</a>
</li>
<li
class="navmenu-item navmenu-id-bezels-cases-covers"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/cases-covers-bezels"
>
Bezels Cases & Covers
</a>
</li>
<li
class="navmenu-item navmenu-id-boards"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/boards"
>
Boards
</a>
</li>
<li
class="navmenu-item navmenu-id-cables"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/cables"
>
Cables
</a>
</li>
<li
class="navmenu-item navmenu-id-dc-jack-cables"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/dc-jack-cables"
>
DC Jack Cables
</a>
</li>
<li
class="navmenu-item navmenu-id-fans"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/fans"
>
Fans
</a>
</li>
<li
class="navmenu-item navmenu-id-hard-drive-brackets"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/hard-drive-brackets"
>
Hard Drive Brackets
</a>
</li>
<li
class="navmenu-item navmenu-id-hard-drives"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/laptop-hard-drive"
>
Hard Drives
</a>
</li>
<li
class="navmenu-item navmenu-id-laptop-case-parts"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/laptop-case-parts"
>
- Laptop Case Parts
</a>
</li>
<li
class="navmenu-item navmenu-id-hinges"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/hinges"
>
Hinges
</a>
</li>
<li
class="navmenu-item navmenu-id-laptop-case"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/laptop-case"
>
Laptop Case
</a>
</li>
<li
class="navmenu-item navmenu-id-laptop-cover"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/laptop-cover"
>
Laptop Cover
</a>
</li>
<li
class="navmenu-item navmenu-id-thermal-printer"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/thermal-printer"
>
Thermal Printer
</a>
</li>
</ul>
</li>
<li
class="navmenu-item navmenu-item-parent navmenu-id-"
data-navmenu-parent
>
<a
href="/collections/all"
class="navmenu-link navmenu-link-parent "
aria-haspopup="true"
aria-expanded="false"
>
.....
</a>
<button
class="navmenu-button"
data-navmenu-trigger
aria-expanded="false"
>
<div class="navmenu-button-wrapper" tabindex="-1">
<span class="navmenu-icon navmenu-icon-depth-2">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="8"
height="6"
viewBox="0 0 8 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>
</span>
<span class="visually-hidden">.....</span>
</div>
</button>
<ul
class="
navmenu
navmenu-depth-3
navmenu-submenu
"
data-navmenu
data-accordion-content
data-navmenu-submenu
aria-label="Main Menu 02"
>
<li
class="navmenu-item navmenu-id-keyboards"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/keyboards-1"
>
Keyboards
</a>
</li>
<li
class="navmenu-item navmenu-id-acer-keyboard"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/acer-keyboard"
>
- Acer keyboard
</a>
</li>
<li
class="navmenu-item navmenu-id-asus-keyboards"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/asus-keyboard"
>
- Asus keyboards
</a>
</li>
<li
class="navmenu-item navmenu-id-dell-keyboard"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/dell-keyboard"
>
- Dell keyboard
</a>
</li>
<li
class="navmenu-item navmenu-id-lenovo-keyboard"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/lenovo-keyboard"
>
- Lenovo keyboard
</a>
</li>
<li
class="navmenu-item navmenu-id-hp-keyboard"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/hp-keyboard"
>
- Hp Keyboard
</a>
</li>
<li
class="navmenu-item navmenu-id-backlit-keyboards"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/backlit-keyboard"
>
- Backlit Keyboards
</a>
</li>
<li
class="navmenu-item navmenu-id-memory"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/memory"
>
Memory
</a>
</li>
<li
class="navmenu-item navmenu-id-motherboards"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/motherboards"
>
Motherboards
</a>
</li>
<li
class="navmenu-item navmenu-id-optical-drives"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/optical-drives"
>
Optical Drives
</a>
</li>
<li
class="navmenu-item navmenu-id-power-supplies"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/power-supplies"
>
Power Supplies
</a>
</li>
<li
class="navmenu-item navmenu-id-screens"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/screens"
>
Screens
</a>
</li>
<li
class="navmenu-item navmenu-id-touch-screen-laptop"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/touch-screen-laptop"
>
- Touch Screen Laptop
</a>
</li>
<li
class="navmenu-item navmenu-id-screens-touch-digitizers"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/screens-touch-digitizers"
>
Screens - Touch Digitizers
</a>
</li>
<li
class="navmenu-item navmenu-id-speakers"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/speakers"
>
Speakers
</a>
</li>
<li
class="navmenu-item navmenu-id-touchpads"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/touchpads"
>
Touchpads
</a>
</li>
</ul>
</li>
<li
class="navmenu-item navmenu-item-parent navmenu-id-other-components"
data-navmenu-parent
>
<a
href="/collections/all"
class="navmenu-link navmenu-link-parent "
aria-haspopup="true"
aria-expanded="false"
>
Other Components
</a>
<button
class="navmenu-button"
data-navmenu-trigger
aria-expanded="false"
>
<div class="navmenu-button-wrapper" tabindex="-1">
<span class="navmenu-icon navmenu-icon-depth-2">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="8"
height="6"
viewBox="0 0 8 6"
fill="none"
xmlns="http://www.w3.org/2000/svg"
class="icon-chevron-down"
>
<path class="icon-chevron-down-left" d="M4 4.5L7 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M4 4.5L1 1.5" stroke="currentColor" stroke-width="1.25" stroke-linecap="square"/>
</svg>
</span>
<span class="visually-hidden">Other Components</span>
</div>
</button>
<ul
class="
navmenu
navmenu-depth-3
navmenu-submenu
"
data-navmenu
data-accordion-content
data-navmenu-submenu
aria-label="Main Menu 02"
>
<li
class="navmenu-item navmenu-id-accessories"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/accessories"
>
Accessories
</a>
</li>
<li
class="navmenu-item navmenu-id-phone-parts"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/phone-parts"
>
Phone Parts
</a>
</li>
<li
class="navmenu-item navmenu-id-printer-parts"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/printer-parts"
>
Printer Parts
</a>
</li>
<li
class="navmenu-item navmenu-id-server-parts"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/server-parts"
>
Server Parts
</a>
</li>
<li
class="navmenu-item navmenu-id-tablet-parts"
>
<a
class="
navmenu-link
navmenu-link-depth-3
"
href="/collections/tablet-parts"
>
Tablet Parts
</a>
</li>
</ul>
</li>
</ul>
</li>
<li
class="navmenu-item navmenu-id-about-us"
>
<a
class="navmenu-link "
href="/pages/about-us"
>
About Us
</a>
</li>
<li
class="navmenu-item navmenu-id-repair-centers"
>
<a
class="navmenu-link "
href="/pages/store-locator"
>
Repair Centers
</a>
</li>
<li
class="navmenu-item navmenu-id-parts-request"
>
<a
class="navmenu-link "
href="/pages/part-request"
>
Parts Request
</a>
</li>
<li
class="navmenu-item navmenu-id-shipping"
>
<a
class="navmenu-link "
href="/pages/shipping"
>
Shipping
</a>
</li>
<li
class="navmenu-item navmenu-id-francais"
>
<a
class="navmenu-link "
href="/pages/francais"
>
Français
</a>
</li>
</ul>
</div>
<div class="utility-bar__mobile-disclosure" data-utility-mobile></div>
</div>
<div class="mobile-nav-overlay" data-mobile-nav-overlay></div>
</div>
</header>
</div>
<!-- END sections: header-group -->
<div style="--background-color: #fff">
</div>
<div class="intersection-target" data-header-intersection-target></div>
<div class="site-main-dimmer" data-site-main-dimmer></div>
<main id="site-main" class="site-main" aria-label="Main content" tabindex="-1">
<div id="shopify-section-template--15492296147031__dynamic_slideshow" class="shopify-section slideshow--section">
<script type="application/pxs-animation-mapping+json">
{
"blocks": [".slideshow-slide"],
"elements": [
".slideshow-slide__heading",
".slideshow-slide__subheading",
".slideshow-slide__text",
".slideshow-slide__button"
]
}
</script>
<style data-shopify>
#shopify-section-template--15492296147031__dynamic_slideshow {
--autoplay-interval: 5s;
}
@media screen and (min-width: 720px) {
#shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
height: 38.291380625476734vw;
}
}
@media screen and (max-width: 719px) {
#shopify-section-template--15492296147031__dynamic_slideshow .slideshow-slide__image-wrapper {
height: 38.291380625476734vw;
}
}
</style>
<script
type="application/json"
data-section-type="pxs-slideshow"
data-section-id="template--15492296147031__dynamic_slideshow"
data-section-data
>
{
"enable_autoplay": true,
"autoplay_interval": 5,
"mobile_navigation_adjust": true,
"transition_fade": null,
"slide_attraction": null,
"slide_friction": null,
"next_text": "Next slide",
"previous_text": "Previous slide"
}
</script>
<section
class="
slideshow
slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
"
aria-label="Slideshow"
data-autoplay="true"
data-autoplay-interval="5"
data-banner="false"
data-slideshow
><div
class="slideshow__wrapper "
data-slideshow-wrapper
>
<div
class="slideshow-slide "
aria-label="Slide 1 of 5"
data-text-color="#ffffff"
tabindex="-1"
data-slideshow-slide
data-slide-index="0"
><div
class="
slideshow-slide__image-wrapper
"
data-slide-image-wrapper
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077 1x"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner_1_1_1311x502.jpg?v=1698065077"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_1_1_{size}.jpg?v=1698065077"
data-rimg-max="1311x502"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='502'></svg>"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
<div
class="
slideshow-slide__overlay
"
style="
background-color: #000000;
opacity: 0.01;
"
></div></div><div
class="
slideshow-slide__content
slideshow-slide__content--1178f9e7-9dad-44d0-a34d-c79c188c7d40
slideshow-slide__content--text-center
"
data-slide-content
></div>
</div>
<div
class="slideshow-slide "
aria-label="Slide 2 of 5"
data-text-color="#ffffff"
tabindex="-1"
data-slideshow-slide
data-slide-index="1"
><div
class="
slideshow-slide__image-wrapper
"
data-slide-image-wrapper
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214 1x"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner2_1_1311x502.jpg?v=1698065214"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/banner2_1_{size}.jpg?v=1698065214"
data-rimg-max="1311x502"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='502'></svg>"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
<div
class="
slideshow-slide__overlay
"
style="
background-color: #000000;
opacity: 0.01;
"
></div></div><div
class="
slideshow-slide__content
slideshow-slide__content--ac4bf3fd-3c33-4016-99d1-6880934c327b
slideshow-slide__content--text-center
"
data-slide-content
></div>
</div>
<div
class="slideshow-slide "
aria-label="Slide 3 of 5"
data-text-color="#ffffff"
tabindex="-1"
data-slideshow-slide
data-slide-index="2"
><div
class="
slideshow-slide__image-wrapper
"
data-slide-image-wrapper
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121 1x"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner_1_2_1800x1000.jpg?v=1698322121"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_1_2_{size}.jpg?v=1698322121"
data-rimg-max="1800x1000"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
<div
class="
slideshow-slide__overlay
"
style="
background-color: #000000;
opacity: 0.01;
"
></div></div><div
class="
slideshow-slide__content
slideshow-slide__content--ad941428-8cfc-4ad3-b90b-31270322336f
slideshow-slide__content--text-center
"
data-slide-content
></div>
</div>
<div
class="slideshow-slide "
aria-label="Slide 4 of 5"
data-text-color="#ffffff"
tabindex="-1"
data-slideshow-slide
data-slide-index="3"
><div
class="
slideshow-slide__image-wrapper
"
data-slide-image-wrapper
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301 1x"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/banner_3_1311x728.jpg?v=1698322301"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/banner_3_{size}.jpg?v=1698322301"
data-rimg-max="1311x728"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1311'%20height='728'></svg>"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
<div
class="
slideshow-slide__overlay
"
style="
background-color: #000000;
opacity: 0.01;
"
></div></div><div
class="
slideshow-slide__content
slideshow-slide__content--dd3cc52a-bc2b-4750-a92f-b9606057a8e9
slideshow-slide__content--text-center
"
data-slide-content
></div>
</div>
<div
class="slideshow-slide "
aria-label="Slide 5 of 5"
data-text-color="#ffffff"
tabindex="-1"
data-slideshow-slide
data-slide-index="4"
><div
class="
slideshow-slide__image-wrapper
"
data-slide-image-wrapper
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924 1x"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_1800x1000.jpg?v=1732359924"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/1_c80d2150-1a27-408f-91da-225f5db9df93_{size}.jpg?v=1732359924"
data-rimg-max="1800x1000"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='1800'%20height='1000'></svg>"
class="slideshow-slide__image slideshow-slide__image--desktop"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
<div
class="
slideshow-slide__overlay
"
style="
background-color: #000000;
opacity: 0.01;
"
></div></div><div
class="
slideshow-slide__content
slideshow-slide__content--f26f4364-dc20-416d-bc23-018a813c8b54
slideshow-slide__content--text-center
"
data-slide-content
></div>
</div>
</div><ol
class="slideshow-pagination"
data-slideshow-pagination
><li class="slideshow-pagination__dot">
<button
class="slideshow-pagination__button"
data-selected="true"
data-slide-button="0"
>
<div class="circle-timer">
<svg class="circle-timer__svg">
<circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
<circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
</svg>
</div>
<span class="visually-hidden">Slide 1</span>
</button>
</li><li class="slideshow-pagination__dot">
<button
class="slideshow-pagination__button"
data-selected="false"
data-slide-button="1"
>
<div class="circle-timer">
<svg class="circle-timer__svg">
<circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
<circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
</svg>
</div>
<span class="visually-hidden">Slide 2</span>
</button>
</li><li class="slideshow-pagination__dot">
<button
class="slideshow-pagination__button"
data-selected="false"
data-slide-button="2"
>
<div class="circle-timer">
<svg class="circle-timer__svg">
<circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
<circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
</svg>
</div>
<span class="visually-hidden">Slide 3</span>
</button>
</li><li class="slideshow-pagination__dot">
<button
class="slideshow-pagination__button"
data-selected="false"
data-slide-button="3"
>
<div class="circle-timer">
<svg class="circle-timer__svg">
<circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
<circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
</svg>
</div>
<span class="visually-hidden">Slide 4</span>
</button>
</li><li class="slideshow-pagination__dot">
<button
class="slideshow-pagination__button"
data-selected="false"
data-slide-button="4"
>
<div class="circle-timer">
<svg class="circle-timer__svg">
<circle class="circle-timer__countdown" r="3.5" cx="50%" cy="50%"></circle>
<circle class="circle-timer__background" r="3.5" cx="50%" cy="50%"></circle>
</svg>
</div>
<span class="visually-hidden">Slide 5</span>
</button>
</li></ol><div
class="slideshow__current-slide visually-hidden"
aria-live="polite"
aria-atomic="true"
data-slide-counter
data-counter-template="Slide {{ count }} of {{ total }}"
>
</div>
</section>
</div><div id="shopify-section-template--15492296147031__dynamic_featured_collection" class="shopify-section featured-collection--section"><script
type="application/json"
data-section-id="template--15492296147031__dynamic_featured_collection"
data-section-type="dynamic-featured-collection"
></script>
<script type="application/pxs-animation-mapping+json">
{
"blocks": [
".featured-collection__title-card"
],
"elements": [
".featured-collection__title-card-pre-heading",
".featured-collection__title-card-heading",
".featured-collection__title-card-button"
]
}
</script>
<style data-shopify>
#shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card {
color: ;
}
#shopify-section-template--15492296147031__dynamic_featured_collection .featured-collection__title-card-outer::before {
background-color: ;
opacity: 0.0;
}
@media screen and (min-width: 1080px) {
#shopify-section-template--15492296147031__dynamic_featured_collection [data-layout="grid"] .featured-collection__title-card {
}
}
</style>
<section class="featured-collection__container" data-featured-collection>
<h2 class="home-section--title">
Shop The Best Selling
</h2>
<ul
class="home-section--content featured-collection__content"
data-content
data-layout="slideshow"
>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
aria-label="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14" Lcd Screen"
data-rimg="noscript"
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"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_512x512.jpg?v=1729018033"
alt="KW8T4 Dell Latitude 7480 7490 FHD Only B140HAN03.3 14" Lcd Screen"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_c56bee2a-ad92-4a23-887e-03a3ef60ad97_{size}.jpg?v=1729018033"
data-rimg-max="1000x1000"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$137.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$137.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$137.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$137.99</span>
-
<span class="money price__current--max" data-price-max>$137.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$137.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen" data-product-page-link>
14 Lcd Screen for Dell Latitude 7480 7490 Laptops - FHD Only B140HAN03.3 KW8T4
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3959626498135"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LG" title="LG">LG</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>
Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
Compatible Part #s: B140HAN03.3, KW8T4
Compatible Models:
Dell Latitude 74...</p>
<a
href="/products/kw8t4-dell-latitude-7480-7490-fhd-only-b140han03-3-14-lcd-screen"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$137.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$137.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$137.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$137.99</span>
-
<span class="money price__current--max" data-price-max>$137.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$137.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29564289744983"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
aria-label="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
alt=""
data-rimg="noscript"
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"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_512x512.jpg?v=1648053872"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_d9a8d661-ac63-4b8b-a91f-2d047aadb335_{size}.jpg?v=1648053872"
data-rimg-max="600x600"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$84.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$84.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$84.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$84.99</span>
-
<span class="money price__current--max" data-price-max>$84.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$84.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
20x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3483510112343"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Plugs directly into AC outlet.
Input: 100-240V ~ 50-60Hz
Output: 12V – 1.5A 18W
Connector Tip: mini USB
Colour: Black
Compatible Part #s: KP.01...</p>
<a
href="/products/20x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$84.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$84.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$84.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$84.99</span>
-
<span class="money price__current--max" data-price-max>$84.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$84.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="39666212798551"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--sale productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
aria-label="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
alt="B156HTN03.6"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_500x500.jpg?v=1725475945"
alt="B156HTN03.6"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_31e43180-63ed-4886-aaba-b51d31e37099_{size}.jpg?v=1725475945"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
<span class="productitem__badge productitem__badge--sale"
data-badge-sales
>
<span data-badge-sales-range>
Save <span data-price-percent-saved>11</span>%
</span>
<span data-badge-sales-single style="display: none;">
Save <span data-price-percent-saved></span>%
</span>
</span>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
$147.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$147.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$147.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
$147.99
</span>
</div>
<div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$130.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$130.99</span>
-
<span class="money price__current--max" data-price-max>$130.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$130.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops" data-product-page-link>
15.6 FHD 1920x1080 Lcd Led Screen Lenovo Y50-70 Laptops B156HTN03.6
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929811353687"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LG" title="LG">LG</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>
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>
<a
href="/products/cdd_156_fhd_1920x1080_lcd_led_screen_lenovo_y50-70_laptops"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
$147.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$147.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$147.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
$147.99
</span>
</div>
<div class="price__current price__current--emphasize price__current--on-sale" data-price-container>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$130.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$130.99</span>
-
<span class="money price__current--max" data-price-max>$130.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$130.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
<span class="productitem__badge productitem__badge--sale"
data-badge-sales
>
<span data-badge-sales-range>
Save <span data-price-percent-saved>11</span>%
</span>
<span data-badge-sales-single style="display: none;">
Save <span data-price-percent-saved></span>%
</span>
</span>
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29564283551831"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
aria-label="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
alt=""
data-rimg="noscript"
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"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_512x512.jpg?v=1648038527"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_342068ce-5b6b-46f6-93d0-e37ca83c6e9a_{size}.jpg?v=1648038527"
data-rimg-max="1000x1000"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$137.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$137.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$137.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$137.99</span>
-
<span class="money price__current--max" data-price-max>$137.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$137.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw" data-product-page-link>
Genuine 14 FHD Led Lcd Screen for Dell Latitude 7480 7490 Laptops - N140HCE-G52 48DGW
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929789694039"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LG" title="LG">LG</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>
Description: New 14" FHD 1920x1080 laptop replacement led lcd screen.
Compatible Part #s: KGYYH, 48DGW, N140HCE-G52
Compatible Models:
Dell Lati...</p>
<a
href="/products/cdd_14_fhd_led_lcd_screen_for_dell_latitude_7480_7490_laptops_-_n140hce-g52_48dgw"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$137.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$137.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$137.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$137.99</span>
-
<span class="money price__current--max" data-price-max>$137.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$137.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29462328246359"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
aria-label="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251 1x, //laptopparts.ca/cdn/shop/products/molex1_599x599.jpg?v=1697125251 1.17x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/molex1_512x512.jpg?v=1697125251"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/molex1_{size}.jpg?v=1697125251"
data-rimg-max="603x603"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$30.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$30.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$30.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$30.99</span>
-
<span class="money price__current--max" data-price-max>$30.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$30.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/4-pin-ide-molex-male-to-15-pin-female-sata-hdd-dvd-adapter-power-cable" data-product-page-link>
4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 1416490647575"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>4 PIN IDE Molex Male TO 15 PIN Female SATA HDD DVD Adapter Power Cable</p>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$30.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$30.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$30.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$30.99</span>
-
<span class="money price__current--max" data-price-max>$30.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$30.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="12583329333271"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
aria-label="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
alt="MacBook Pro"
data-rimg="noscript"
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"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_512x512.jpg?v=1726123088"
alt="MacBook Pro"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/206f3e6a-706c-4c99-a41e-86f19f80b2c8_baa76b06-d843-46c9-a31e-5d81ca07d899_{size}.jpg?v=1726123088"
data-rimg-max="1000x1000"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$56.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$56.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$56.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$56.99</span>
-
<span class="money price__current--max" data-price-max>$56.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$56.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011" data-product-page-link>
60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 6872720015447"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Apple" title="Apple">Apple</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Plugs directly into AC outlet.
60W Apple MacBook Pro 13" AC Power Adapter Charger A1181 A1184 A1278 2009-2011
Input: 100-240V ~ 50-60Hz
Output: 1...</p>
<a
href="/products/macbook-pro-60w-apple-macbook-pro-13-ac-power-adapter-charger-a1181-a1184-a1278-2009-2011"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$56.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$56.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$56.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$56.99</span>
-
<span class="money price__current--max" data-price-max>$56.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$56.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="40156967370839"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_500x500.jpg?v=1648096953"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_d03a623c-eeec-47df-86ca-2d4a09e5992d_{size}.jpg?v=1648096953"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$247.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$247.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$247.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$247.99</span>
-
<span class="money price__current--max" data-price-max>$247.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$247.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8" data-product-page-link>
15.6 FHD Led Lcd Touch Screen - Replaces Dell B156HAT01.0 9F8C8
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3933207593047"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LG" title="LG">LG</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>
Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
**This screen will only work if your laptop is one of the models below that ca...</p>
<a
href="/products/cdd_156_fhd_led_lcd_touch_screen_-_replaces_dell_b156hat010_9f8c8"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$247.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$247.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$247.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$247.99</span>
-
<span class="money price__current--max" data-price-max>$247.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$247.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29531492974679"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
aria-label="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
alt="Updated alt text"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_500x500.jpg?v=1680602908"
alt="Updated alt text"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/kp.0450h.001_grande_f0cf3053-9726-45bc-aedc-f5036502ff9f_{size}.jpg?v=1680602908"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$54.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$54.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$54.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$54.99</span>
-
<span class="money price__current--max" data-price-max>$54.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$54.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23" data-product-page-link>
19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 6872273420375"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>19V 45W Genuine Laptop AC Power Adapter Charger For Acer Aspire PA-1450-26AL 3.0*1.1
Includes power cord.
Input: 100-240V ~ 50-60Hz
Output: 19V –...</p>
<a
href="/products/genuine-acer-a13-045n2a-a045r016l-ac-adapter-charger-23"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$54.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$54.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$54.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$54.99</span>
-
<span class="money price__current--max" data-price-max>$54.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$54.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="40155858534487"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
aria-label="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747 1x, //laptopparts.ca/cdn/shop/products/z1_799x799.jpg?v=1648128747 1.56x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/z1_512x512.jpg?v=1648128747"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/z1_{size}.jpg?v=1648128747"
data-rimg-max="800x800"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$32.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$32.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$32.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$32.99</span>
-
<span class="money price__current--max" data-price-max>$32.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$32.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/2x-ide-molex-female-4-pin-to-sata-male-15-pin-power-splitter-y-adapter-cable" data-product-page-link>
2x IDE-Molex Female 4-Pin to SATA Male 15-Pin Power Splitter Y Adapter Cable
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 4421896306775"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LaptopParts.ca" title="LaptopParts.ca">LaptopParts.ca</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Cable Length(approx.): 15cm ± 10% (Just Cable)Connector Type: 1.x SATA Power 15-pin, Male2 x Molex IDE 4-pin, Female</p>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$32.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$32.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$32.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$32.99</span>
-
<span class="money price__current--max" data-price-max>$32.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$32.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="31550087692375"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
aria-label="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_500x500.jpg?v=1648039824"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_5c610ff7-f11d-47d4-a9fa-bd525763e2ba_{size}.jpg?v=1648039824"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$247.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$247.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$247.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$247.99</span>
-
<span class="money price__current--max" data-price-max>$247.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$247.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops" data-product-page-link>
15.6 FHD Led Lcd Touch Screen for Dell Inspiron 15 5547 Laptops B156HAT01.0
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929811091543"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=LG" title="LG">LG</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>
Description: New laptop led lcd touch screen 15.6" FHD 1920x1080.
**This screen will only work if your laptop is one of the models below that ca...</p>
<a
href="/products/cdd_156_fhd_led_lcd_touch_screen_for_dell_inspiron_15_5547_laptops"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$247.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$247.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$247.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$247.99</span>
-
<span class="money price__current--max" data-price-max>$247.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$247.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29564283224151"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
aria-label="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007 1x, //laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_599x599.jpg?v=1648053007 1.17x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_512x512.jpg?v=1648053007"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/27.k2102.001_4872b94b-b3a9-4ae3-bdd8-5ebb31eae850_{size}.jpg?v=1648053007"
data-rimg-max="600x600"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$32.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$32.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$32.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$32.99</span>
-
<span class="money price__current--max" data-price-max>$32.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$32.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug" data-product-page-link>
5x lot New Genuine Acer Iconia Tablet ADP-18TB ATip AC Adapter Charger US Plug
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3483509915735"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Plugs directly into AC outlet.
Input: 100-240V ~ 50-60Hz
Output: 12V – 1.5A 18W
Connector Tip: mini USB
Colour: Black
Compatible Part #s: KP.01...</p>
<a
href="/products/5x-lot-new-genuine-acer-iconia-tablet-adp-18tb-atip-ac-adapter-charger-us-plug"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$32.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$32.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$32.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$32.99</span>
-
<span class="money price__current--max" data-price-max>$32.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$32.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="39666212831319"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
aria-label="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/8291_500x500.jpg?v=1648090863"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/8291_{size}.jpg?v=1648090863"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$100.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$100.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$100.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$100.99</span>
-
<span class="money price__current--max" data-price-max>$100.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$100.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a" data-product-page-link>
5 Slot Printhead for HP 564 564XL Ink Cartridges - Replaces CB326-30002 CN642A
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 592337698839"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=HP" title="HP">HP</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>
Description: 5 slot printhead for select HP printers. This item is refurbished. Compatible Part #'s: CB326-30002, CN642A. Compatible Models: HP ...</p>
<a
href="/products/5-slot-printhead-for-hp-564-564xl-ink-cartridges-replaces-cb326-30002-cn642a"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$100.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$100.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$100.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$100.99</span>
-
<span class="money price__current--max" data-price-max>$100.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$100.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="6936707596311"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
aria-label="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253 1x, //laptopparts.ca/cdn/shop/products/500gb_998x998.jpg?v=1697125253 1.95x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/500gb_512x512.jpg?v=1697125253"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/500gb_{size}.jpg?v=1697125253"
data-rimg-max="1000x1000"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$56.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$56.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$56.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$56.99</span>
-
<span class="money price__current--max" data-price-max>$56.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$56.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/500gb-7mm-2-5-7200rpm-laptop-hard-drive-for-lenovo" data-product-page-link>
500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 1362179063831"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Lenovo" title="Lenovo">Lenovo</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>500GB 7mm 2.5" 7200RPM Laptop Hard Drive for Lenovo</p>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$56.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$56.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$56.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$56.99</span>
-
<span class="money price__current--max" data-price-max>$56.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$56.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="12366737309719"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
aria-label="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_500x500.jpg?v=1648042700"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_2e900a19-bc81-446d-b04b-2ec46c923c1d_{size}.jpg?v=1648042700"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$48.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$48.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$48.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$48.99</span>
-
<span class="money price__current--max" data-price-max>$48.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$48.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10" data-product-page-link>
4K UHD Lcd Cable for Dell XPS 9550 9560 Precision 5510 - Replaces DC02C00BK10
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929813123159"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Dell" title="Dell">Dell</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>
Description: New laptop lcd video cable. This cable is the 4K UHD (3840 x 2160) touchscreen version. If your laptop does not have a touchscreen th...</p>
<a
href="/products/cdd_4k_uhd_lcd_cable_for_dell_xps_9550_9560_precision_5510_-_replaces_dc02c00bk10"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$48.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$48.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$48.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$48.99</span>
-
<span class="money price__current--max" data-price-max>$48.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$48.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29531497529431"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
aria-label="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
alt="925740-002"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198 1x, //laptopparts.ca/cdn/shop/files/tpn-ca06_1024x1024.jpg?v=1721171198 2x, //laptopparts.ca/cdn/shop/files/tpn-ca06_1039x1039.jpg?v=1721171198 2.03x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/tpn-ca06_512x512.jpg?v=1721171198"
alt="925740-002"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/tpn-ca06_{size}.jpg?v=1721171198"
data-rimg-max="1043x1043"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$68.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$68.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$68.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$68.99</span>
-
<span class="money price__current--max" data-price-max>$68.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$68.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1" data-product-page-link>
925740-002 Genuine 65W USB Type-C Adapter Charger for HP Elite X2 1012 G2 Elitebook x360
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 6881873985623"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=HP" title="HP">HP</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Specifications:Input: 100-240V~1.2A~0.6A 50-60HzOutput : 5V 3A/9V 3A/10V 5A/12V 5A/15V 4.33A/20V 3.25AAdapter Plug Size: USB Type COutlet: 3-prongC...</p>
<a
href="/products/925740-002-genuine-65w-usb-type-c-adapter-charger-for-hp-elite-x2-1012-g2-elitebook-x360-1"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$68.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$68.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$68.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$68.99</span>
-
<span class="money price__current--max" data-price-max>$68.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$68.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="40183331749975"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
aria-label="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_500x500.jpg?v=1648046166"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/s-l1600_7037832e-f3fe-48d2-a622-72f4f81c4bcd_{size}.jpg?v=1648046166"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$48.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$48.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$48.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$48.99</span>
-
<span class="money price__current--max" data-price-max>$48.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$48.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001" data-product-page-link>
Acer Altos AT110F2 AT115F1 AT310F2 Server Cooling Fan HI.R4300.001
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929815122007"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>
Description: New Acer server replacement case cooling fan.
Compatible Part #'s: HI.R4300.001, DS09225B12UP021.
Compatible Models:
Acer Altos AT1...</p>
<a
href="/products/cdd_acer_altos_at110f2_at115f1_at310f2_server_cooling_fan_hir4300001"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$48.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$48.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$48.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$48.99</span>
-
<span class="money price__current--max" data-price-max>$48.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$48.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29507473014871"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
aria-label="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_500x500.jpg?v=1715271372"
alt="Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/e437443f56cba3a78fcb39ff497f1e33_{size}.jpg?v=1715271372"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$100.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$100.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$100.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$100.99</span>
-
<span class="money price__current--max" data-price-max>$100.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$100.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual" data-product-page-link>
Acer Aspire 4220 4220G 4310 4315 4320 Keyboard Light Grey Canadian Bilingual
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 4451279622"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
<a
href="/products/acer-aspire-4220-4220g-4310-4315-4320-keyboard-light-grey-canadian-bilingual"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$100.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$100.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$100.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$100.99</span>
-
<span class="money price__current--max" data-price-max>$100.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$100.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="39666365366359"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
aria-label="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_500x500.jpg?v=1715271378"
alt="Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual - LaptopParts.ca"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/1bd0ab12e1b96718a4fd4cf0e0eab87c_{size}.jpg?v=1715271378"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$100.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$100.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$100.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$100.99</span>
-
<span class="money price__current--max" data-price-max>$100.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$100.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual" data-product-page-link>
Acer Aspire 4920 4920G 5220 5310 5315 Keyboard Light Grey Canadian Bilingual
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 4451280006"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>Description: New genuine Acer laptop replacement keyboard. The keyboard color is light grey. Canadian Biligual layout. Part #'s: KB.INT00.208, NSK-...</p>
<a
href="/products/acer-aspire-4920-4920g-5220-5310-5315-keyboard-light-grey-canadian-bilingual"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$100.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$100.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$100.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$100.99</span>
-
<span class="money price__current--max" data-price-max>$100.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$100.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="39666365268055"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
aria-label="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427 1x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_500x500.jpg?v=1715271427"
alt="Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M - LaptopParts.ca"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/2425ffa2d32a4b3025fbf589749090df_{size}.jpg?v=1715271427"
data-rimg-max="500x500"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='500'%20height='500'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$80.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$80.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$80.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$80.99</span>
-
<span class="money price__current--max" data-price-max>$80.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$80.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m" data-product-page-link>
Acer Aspire 3810T 3810TZ 3810TZG Canadian Bilingual Keyboard NSK-AM02M
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 4451281286"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Description: New genuine Acer laptop replacement keyboard. Canadian Bilingual layout. Part #'s: KB.I140A.114, KBI140A114, NSK-AM02M, 9J.N1P82.02M. ...</p>
<a
href="/products/acer-aspire-3810t-3810tz-3810tzg-canadian-bilingual-keyboard-nsk-am02m"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$80.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$80.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$80.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$80.99</span>
-
<span class="money price__current--max" data-price-max>$80.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$80.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="39666363793495"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
aria-label="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255 1x, //laptopparts.ca/cdn/shop/products/33.paa02.007_650x650.jpg?v=1697125255 1.27x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/33.paa02.007_512x512.jpg?v=1697125255"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/33.paa02.007_{size}.jpg?v=1697125255"
data-rimg-max="655x655"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$59.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$59.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$59.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$59.99</span>
-
<span class="money price__current--max" data-price-max>$59.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$59.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210" data-product-page-link>
Acer Aspire 4235 4240 4336 4535 4535G 4540 4540G Hinge Set 091203-240 091221-210
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 243102056471"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>Description: New genuine Acer laptop hinge and bracket set.
Part #'s: 33.PAA02.007, 091203 240, 091221 210.
Compatible Models: Acer Aspire 4235, 42...</p>
<a
href="/products/acer-aspire-4235-4240-4336-4535-4535g-4540-4540g-hinge-set-091203-240-091221-210"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$59.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$59.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$59.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$59.99</span>
-
<span class="money price__current--max" data-price-max>$59.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$59.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="2838819504151"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
aria-label="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 0.5231513476157568;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right & Left Lcd Hinge Set"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053 1x, //laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_753x1439.jpg?v=1728212053 1.47x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_512x979.jpg?v=1728212053"
alt="33.GP4N2.003 Acer Aspire 5 A515-41 A515-41G Right & Left Lcd Hinge Set"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/51c989a4-f9d6-4a22-ada6-0a47e18073c7_{size}.jpg?v=1728212053"
data-rimg-max="757x1447"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='979'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$45.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$45.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$45.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$45.99</span>
-
<span class="money price__current--max" data-price-max>$45.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$45.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set" data-product-page-link>
Acer Aspire 5 A515-41 A515-41G A515-51 A515-51G Right & Left Lcd Hinge Set 33.GP4N2.003
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 1468469608471"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>
Description: New Acer right and left laptop lcd hinge set.
Compatible Part #'s: 33.GP4N2.003, 33.GP4N2.004Compatible Models:Acer Aspire 3 A315-...</p>
<a
href="/products/acer-aspire-5-a515-51-a515-51g-right-left-lcd-hinge-set"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$45.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$45.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$45.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$45.99</span>
-
<span class="money price__current--max" data-price-max>$45.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$45.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="12807718895639"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
aria-label="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966 1x, //laptopparts.ca/cdn/shop/products/23.apq0n.001_599x599.jpg?v=1715271966 1.17x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/23.apq0n.001_512x512.jpg?v=1715271966"
alt="Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A - LaptopParts.ca"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/23.apq0n.001_{size}.jpg?v=1715271966"
data-rimg-max="600x600"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$52.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$52.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$52.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$52.99</span>
-
<span class="money price__current--max" data-price-max>$52.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$52.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/genuine-acer-aspire-6920-6920g-6935-6935g-6935z-cpu-fan-zb0509phv1-6a" data-product-page-link>
Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 4451325446"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>Genuine Acer Aspire 6920 6920G 6935 6935G 6935Z CPU Fan ZB0509PHV1-6A</p>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$52.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$52.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$52.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$52.99</span>
-
<span class="money price__current--max" data-price-max>$52.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$52.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="39666095259735"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
aria-label="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258 1x, //laptopparts.ca/cdn/shop/products/55.r4f02.002_599x599.png?v=1697125258 1.17x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/55.r4f02.002_512x512.png?v=1697125258"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/55.r4f02.002_{size}.png?v=1697125258"
data-rimg-max="603x603"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$50.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$50.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$50.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$50.99</span>
-
<span class="money price__current--max" data-price-max>$50.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$50.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/55-r4f02-002-acer-aspire-5742z-usb-board" data-product-page-link>
Acer Aspire 5742Z USB Board 55.R4F02.002
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 4605263622"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">In stock</b>
</div>
<div class="productitem--description">
<p>55.R4F02.002 Acer Aspire 5742Z USB Board - Pulled from working laptops
Compatible Models:
Aspire 5252, 5333, 5336, 5552, 5733, 5736, 5742
Gateway N...</p>
<a
href="/products/55-r4f02-002-acer-aspire-5742z-usb-board"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$50.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$50.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$50.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$50.99</span>
-
<span class="money price__current--max" data-price-max>$50.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$50.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="15084894150"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
aria-label="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.3333333333333333;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531 1x, //laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_1024x768.jpg?v=1729362531 2x, //laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_1495x1121.jpg?v=1729362531 2.92x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_512x384.jpg?v=1729362531"
alt="23.GXBN2.001 Acer Aspire 7 A715-72 A715-72G A717-72 Laptop Cpu Fan"
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/bfe0d5d8-f846-47cc-b5b6-23f3b590ebac_{size}.jpg?v=1729362531"
data-rimg-max="1500x1125"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='384'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$50.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$50.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$50.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$50.99</span>
-
<span class="money price__current--max" data-price-max>$50.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$50.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1" data-product-page-link>
Acer Aspire 7 A715-72 A715-72G A717-72 A717-72G Laptop Cpu Fan 23.GXBN2.001
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929786187863"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>
Description: New Acer laptop cpu fan.
Compatible Part #'s: 23.GXBN2.001
Compatible Models:
Acer Aspire 7 A715-72, A715-72G
Acer Aspire 7 A717-7...</p>
<a
href="/products/23-gxbn2-001-acer-aspire-7-a715-72-a715-72g-a717-72-laptop-cpu-fan-1"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$50.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$50.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$50.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$50.99</span>
-
<span class="money price__current--max" data-price-max>$50.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$50.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29440907575383"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
<li
class="productgrid--item imagestyle--natural productitem--emphasis show-actions--mobile"
data-product-item
data-product-quickshop-url="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
>
<div class="productitem" data-product-item-content>
<div class="productitem__container">
<div class="productitem__image-container">
<a target="_blank"
class="productitem--image-link"
href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
aria-label="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
tabindex="-1"
data-product-page-link
>
<figure
class="productitem--image"
data-product-item-image
style="--product-grid-item-image-aspect-ratio: 1.0;"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259 1x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_1024x1024.jpg?v=1697125259 2x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_1536x1536.jpg?v=1697125259 3x, //laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_2048x2048.jpg?v=1697125259 4x"
class="productitem--image-primary"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_512x512.jpg?v=1697125259"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/products/1_2c4ff2cf-3652-4a98-9be3-2a83ab1ca0f8_{size}.jpg?v=1697125259"
data-rimg-max="2048x2048"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='512'%20height='512'></svg>"
class="productitem--image-primary"
>
<div data-rimg-canvas></div>
</figure>
</a>
</div><div class="productitem--info">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$58.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$58.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$58.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$58.99</span>
-
<span class="money price__current--max" data-price-max>$58.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$58.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
<h2 class="productitem--title">
<a href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001" data-product-page-link>
Acer Aspire A114-31 Dc Jack Cable 45W 50.GNSN7.001
</a>
</h2>
<!-- Shopper Approved - snippets/product-grid-item.liquid -->
<div class="star_container 3929790414935"></div>
<!-- END Shopper Approved - snippets/product-grid-item.liquid -->
<span class="productitem--vendor">
<a href="/collections/vendors?q=Acer" title="Acer">Acer</a>
</span>
<div class="productitem__stock-level">
<!--
<div class="product-stock-level-wrapper" >
<span class="
product-stock-level
product-stock-level--continue-selling
">
<span class="product-stock-level__text">
<div class="product-stock-level__badge-text">
In stock
</div>
</span>
</span>
</div>
-->
<b style="color:green">Incoming ETA 7 to 10 Days</b>
</div>
<div class="productitem--description">
<p>
Description: New genuine Acer laptop dc jack cable. 45 watt version.
Compatible Part #'s: 50.GNSN7.001
Compatible Models:
Acer Aspire 1 A114-31
...</p>
<a
href="/products/cdd_acer_aspire_a114-31_dc_jack_cable_45w_50gnsn7001"
class="productitem--link"
data-product-page-link
>
View full details
</a>
</div>
</div>
<div class="productitem--actions" data-product-actions>
<div class="productitem--listview-price">
<div class="price productitem__price ">
<div
class="price__compare-at visible"
data-price-compare-container
>
<span class="money price__original" data-price-original></span>
</div>
<div class="price__compare-at--hidden" data-compare-price-range-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--min" data-price-compare-min>
$58.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$58.99
</span>
</div>
<div class="price__compare-at--hidden" data-compare-price-hidden>
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--single" data-price-compare>
</span>
</div>
<div class="price__current price__current--emphasize " data-price-container>
<span class="money" data-price>
$58.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$58.99</span>
-
<span class="money price__current--max" data-price-max>$58.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$58.99
</span>
</div>
<div
class="
productitem__unit-price
hidden
"
data-unit-price
>
<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>
</div>
</div>
</div>
<div class="productitem--listview-badge">
</div>
<div
class="
productitem--action
quickshop-button
"
>
<button
class="productitem--action-trigger button-secondary"
data-quickshop-full
type="button"
>
Quick shop
</button>
</div>
<div
class="
productitem--action
atc--button
"
>
<button
class="productitem--action-trigger productitem--action-atc button-primary"
type="button"
aria-label="Add to cart"
data-quick-buy
data-variant-id="29408090816599"
>
<span class="atc-button--text">
Add to cart
</span>
<span class="atc-button--icon"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</button>
</div>
</div>
</div>
</div>
<script type="application/json" data-quick-buy-settings>
{
"cart_redirection": true,
"money_format": "${{amount}}"
}
</script>
</li>
</ul>
<a
class="
button-primary
featured-collection__button
"
href="/collections/shop-the-best-selling"
>
View All
</a>
</section>
<div class="productitem-quickshop" data-product-quickshop>
<span class="quickshop-spinner"><svg
aria-hidden="true"
focusable="false"
role="presentation"
width="26"
height="26"
viewBox="0 0 26 26"
xmlns="http://www.w3.org/2000/svg"
>
<g fill-rule="nonzero" fill="currentColor">
<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"/>
</g>
</svg></span>
</div>
</div><div id="shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114" class="shopify-section slideshow--section">
<script type="application/pxs-animation-mapping+json">
{
"blocks": [".slideshow-slide"],
"elements": [
".slideshow-slide__heading",
".slideshow-slide__subheading",
".slideshow-slide__text",
".slideshow-slide__button"
]
}
</script>
<style data-shopify>
#shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 {
--autoplay-interval: 5s;
}
@media screen and (min-width: 720px) {
#shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
height: vw;
}
}
@media screen and (max-width: 719px) {
#shopify-section-template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114 .slideshow-slide__image-wrapper {
height: vw;
}
}
</style>
<script
type="application/json"
data-section-type="pxs-slideshow"
data-section-id="template--15492296147031__efb73b3f-0ab2-4b92-a09b-98ecda294114"
data-section-data
>
{
"enable_autoplay": true,
"autoplay_interval": 5,
"mobile_navigation_adjust": true,
"transition_fade": null,
"slide_attraction": null,
"slide_friction": null,
"next_text": "Next slide",
"previous_text": "Previous slide"
}
</script>
<section
class="
slideshow
slideshow--height-adapt slideshow--height-adapt-mobile slideshow--width-full slideshow--text-below-image-false
"
aria-label="Slideshow"
data-autoplay="true"
data-autoplay-interval="5"
data-banner="false"
data-slideshow
><div
class="slideshow__wrapper "
data-slideshow-wrapper
></div><div
class="slideshow__current-slide visually-hidden"
aria-live="polite"
aria-atomic="true"
data-slide-counter
data-counter-template="Slide {{ count }} of {{ total }}"
>
</div>
</section>
</div><div id="shopify-section-template--15492296147031__516e59b8-141e-43e3-8f1d-46287735da01" class="shopify-section logolist--section"><script type="application/pxs-animation-mapping+json">
{
"blocks": [".logolist--inner"],
"elements": [
".logolist--item"
]
}
</script>
<section class="logolist--container">
<h2 class="home-section--title">
Search By Brands
</h2>
<div class="home-section--content logolist--inner">
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/acer-parts-canada"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818 1x, //laptopparts.ca/cdn/shop/files/Acer_320x78.png?v=1698309818 2x, //laptopparts.ca/cdn/shop/files/Acer_480x117.png?v=1698309818 3x, //laptopparts.ca/cdn/shop/files/Acer_640x156.png?v=1698309818 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Acer_160x39.png?v=1698309818"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Acer_{size}.png?v=1698309818"
data-rimg-max="1024x247"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='39'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/dell-laptop-batteries"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835 1x, //laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_320x320.png?v=1698309835 2x, //laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_480x480.png?v=1698309835 3x, //laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_640x640.png?v=1698309835 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_160x160.png?v=1698309835"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Dell_logo_2016_svg_{size}.png?v=1698309835"
data-rimg-max="2048x2048"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/asus"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865 1x, //laptopparts.ca/cdn/shop/files/Asus_320x64.png?v=1698309865 2x, //laptopparts.ca/cdn/shop/files/Asus_480x96.png?v=1698309865 3x, //laptopparts.ca/cdn/shop/files/Asus_499x100.png?v=1698309865 3.12x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Asus_160x32.png?v=1698309865"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Asus_{size}.png?v=1698309865"
data-rimg-max="504x100"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='32'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/fujitsu"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977 1x, //laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_320x152.png?v=1698309977 2x, //laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_480x228.png?v=1698309977 3x, //laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_640x304.png?v=1698309977 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_160x76.png?v=1698309977"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Fujitsu-Logo_svg_{size}.png?v=1698309977"
data-rimg-max="1280x602"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='76'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/samsung"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930 1x, //laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_320x50.png?v=1698309930 2x, //laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_480x75.png?v=1698309930 3x, //laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_640x100.png?v=1698309930 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_160x25.png?v=1698309930"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Samsung_wordmark_svg_{size}.png?v=1698309930"
data-rimg-max="7051x1080"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/apple"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948 1x, //laptopparts.ca/cdn/shop/files/Apple-Logo_320x180.jpg?v=1698309948 2x, //laptopparts.ca/cdn/shop/files/Apple-Logo_480x270.jpg?v=1698309948 3x, //laptopparts.ca/cdn/shop/files/Apple-Logo_640x360.jpg?v=1698309948 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Apple-Logo_160x90.jpg?v=1698309948"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Apple-Logo_{size}.jpg?v=1698309948"
data-rimg-max="3840x2160"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='90'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/hp-laptop-battery"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007 1x, //laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_320x320.png?v=1698310007 2x, //laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_480x480.png?v=1698310007 3x, //laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_640x640.png?v=1698310007 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_160x160.png?v=1698310007"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/2048px-HP_logo_2012_svg_{size}.png?v=1698310007"
data-rimg-max="2048x2048"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/all"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074 1x, //laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_320x200.png?v=1698310074 2x, //laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_480x300.png?v=1698310074 3x, //laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_640x400.png?v=1698310074 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_160x100.png?v=1698310074"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Lenovo-Logo-1_{size}.png?v=1698310074"
data-rimg-max="5000x3125"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='100'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/all"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052 1x, //laptopparts.ca/cdn/shop/files/Alienware_320x86.png?v=1698310052 2x, //laptopparts.ca/cdn/shop/files/Alienware_480x129.png?v=1698310052 3x, //laptopparts.ca/cdn/shop/files/Alienware_640x172.png?v=1698310052 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Alienware_160x43.png?v=1698310052"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Alienware_{size}.png?v=1698310052"
data-rimg-max="860x231"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='43'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/all"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106 1x, //laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_320x50.png?v=1698310106 2x, //laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_480x75.png?v=1698310106 3x, //laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_640x100.png?v=1698310106 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_160x25.png?v=1698310106"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Toshiba_logo_svg_{size}.png?v=1698310106"
data-rimg-max="1200x183"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='25'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/all"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364 1x, //laptopparts.ca/cdn/shop/files/Panasonic_224x224.png?v=1698310364 1.4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/Panasonic_160x160.png?v=1698310364"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/Panasonic_{size}.png?v=1698310364"
data-rimg-max="225x225"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
<div class="logolist--item" >
<a
class="logolist--link"
href="/collections/all"
target="_blank"
>
<noscript data-rimg-noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
alt=""
data-rimg="noscript"
srcset="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433 1x, //laptopparts.ca/cdn/shop/files/razer-removebg-preview_320x182.png?v=1698310433 2x, //laptopparts.ca/cdn/shop/files/razer-removebg-preview_480x273.png?v=1698310433 3x, //laptopparts.ca/cdn/shop/files/razer-removebg-preview_640x364.png?v=1698310433 4x"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
</noscript>
<img loading="lazy"
src="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_160x91.png?v=1698310433"
alt=""
data-rimg="lazy"
data-rimg-scale="1"
data-rimg-template="//laptopparts.ca/cdn/shop/files/razer-removebg-preview_{size}.png?v=1698310433"
data-rimg-max="666x375"
data-rimg-crop="false"
srcset="data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='91'></svg>"
class="logolist--image"
style="
object-fit:cover;object-position:50.0% 50.0%;
"
>
<div data-rimg-canvas></div>
</a>
</div>
</div>
</section>
</div><div id="shopify-section-template--15492296147031__16962663497dd9ec87" class="shopify-section"><div class="product-section--container">
</div>
</div><div id="shopify-section-template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706" class="shopify-section highlights-banner"><script
type="application/json"
data-section-type="dynamic-highlights-banner"
data-section-id="template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706">
</script>
<style>
.highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706.highlights-banner__container {
background-color: #000000;
}
.highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:before {
background: linear-gradient( to right, #000000 10%, rgba(0, 0, 0, 0) 100%);
}
.highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__content:after {
background: linear-gradient( to left, #000000 10%, rgba(0, 0, 0, 0) 100%);
}
.highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__block {
color: #ffffff;
}
.highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706 .highlights-banner__icon {
color: #fe0000;
}
</style>
<script type="application/pxs-animation-mapping+json">
{
"blocks": [".highlights-banners-block"],
"elements": []
}
</script>
<div class="
highlights-banner__template--15492296147031__17fd69f7-af97-4546-8bda-7bf847754706
highlights-banner__container
highlights-banner__mobile-layout--slider
full-width
"
>
<div class="highlights-banner__content highlight-banner__count-4"
data-highlights-slider
>
<div
class="highlights-banner__block highlights-banner__align-left"
data-highlights-block
>
<div class="highlights-banner__icon">
<svg class="icon-rating-star " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M21.1436 2.88017C21.2093 2.70565 21.3266 2.55529 21.4799 2.44916C21.6332 2.34303 21.8152 2.28617 22.0016 2.28617C22.1881 2.28617 22.3701 2.34303 22.5234 2.44916C22.6767 2.55529 22.794 2.70565 22.8596 2.88017L27.4998 16.0362H40.6045C40.7919 16.0362 40.9748 16.0936 41.1285 16.2007C41.2823 16.3078 41.3995 16.4595 41.4644 16.6353C41.5294 16.811 41.5388 17.0025 41.4916 17.1839C41.4444 17.3652 41.3427 17.5277 41.2003 17.6495L30.2498 26.7282L34.8331 40.4965C34.8944 40.681 34.8955 40.8802 34.8362 41.0653C34.7768 41.2505 34.6602 41.412 34.503 41.5265C34.3459 41.6409 34.1564 41.7025 33.962 41.7022C33.7676 41.702 33.5783 41.6399 33.4215 41.525L21.9998 33.1448L10.5726 41.525C10.4157 41.6377 10.2272 41.6978 10.034 41.697C9.84082 41.6961 9.65285 41.6343 9.49692 41.5202C9.341 41.4062 9.22509 41.2458 9.16574 41.0619C9.1064 40.8781 9.10665 40.6802 9.16647 40.4965L13.7498 26.7282L2.79747 17.6495C2.65505 17.5277 2.55338 17.3652 2.50615 17.1839C2.45892 17.0025 2.46841 16.811 2.53333 16.6353C2.59825 16.4595 2.71549 16.3078 2.86925 16.2007C3.02301 16.0936 3.20591 16.0362 3.3933 16.0362H16.4998L21.1436 2.88017Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>
</div>
<div class="highlights-banner__text">
<span class="highlights-banner__heading">
Quality and Saving
</span>
<p>Comprehensive quality control and affordable prices</p>
</div>
</div>
<div
class="highlights-banner__block highlights-banner__align-left"
data-highlights-block
>
<div class="highlights-banner__icon">
<svg class="icon-delivery-package " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M23.6498 42.7423C23.4202 42.8471 23.1714 42.9032 22.919 42.9073C22.6666 42.9114 22.4161 42.8634 22.1832 42.7662L2.044 34.3768C1.71005 34.2375 1.4248 34.0025 1.22416 33.7014C1.02352 33.4003 0.916474 33.0465 0.916504 32.6847V11.275C0.916331 10.9181 1.02032 10.569 1.21572 10.2703C1.41111 9.9717 1.68942 9.73659 2.0165 9.59384L21.2665 1.22467C21.4978 1.12372 21.7475 1.07162 21.9998 1.07162C22.2522 1.07162 22.5019 1.12372 22.7332 1.22467L41.9832 9.59384C42.3103 9.73659 42.5886 9.9717 42.784 10.2703C42.9794 10.569 43.0833 10.9181 43.0832 11.275V32.725C43.0834 33.0772 42.9822 33.422 42.7917 33.7182C42.6012 34.0143 42.3294 34.2494 42.0088 34.3952L23.6498 42.7423Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M22.9165 19.239V42.9275" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M22.9165 19.239L42.7513 10.2245" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M32.0337 5.269L11.9165 14.531V21.2392" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M22.9167 19.239L1.25586 10.2135" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>
</div>
<div class="highlights-banner__text">
<span class="highlights-banner__heading">
Huge Inventory
</span>
<p>largest available inventory of parts in Canada</p>
</div>
</div>
<div
class="highlights-banner__block highlights-banner__align-left"
data-highlights-block
>
<div class="highlights-banner__icon">
<svg class="icon-delivery " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="54" height="44" viewBox="0 0 54 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M5.5 22H18.7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.6001 38.5C6.6001 39.667 7.06367 40.7861 7.88883 41.6113C8.71399 42.4364 9.83314 42.9 11.0001 42.9C12.167 42.9 13.2862 42.4364 14.1114 41.6113C14.9365 40.7861 15.4001 39.667 15.4001 38.5C15.4001 37.333 14.9365 36.2139 14.1114 35.3887C13.2862 34.5636 12.167 34.1 11.0001 34.1C9.83314 34.1 8.71399 34.5636 7.88883 35.3887C7.06367 36.2139 6.6001 37.333 6.6001 38.5V38.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M37.3999 38.5C37.3999 39.667 37.8635 40.7861 38.6886 41.6113C39.5138 42.4364 40.6329 42.9 41.7999 42.9C42.9669 42.9 44.086 42.4364 44.9112 41.6113C45.7363 40.7861 46.1999 39.667 46.1999 38.5C46.1999 37.333 45.7363 36.2139 44.9112 35.3887C44.086 34.5636 42.9669 34.1 41.7999 34.1C40.6329 34.1 39.5138 34.5636 38.6886 35.3887C37.8635 36.2139 37.3999 37.333 37.3999 38.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.6001 38.5H2.2001C1.90836 38.5 1.62857 38.3841 1.42228 38.1778C1.21599 37.9715 1.1001 37.6917 1.1001 37.4V26.8554C1.10016 26.5642 1.21567 26.285 1.4213 26.0788L5.5001 22L10.3709 13.2308C10.5615 12.888 10.8403 12.6025 11.1784 12.4036C11.5164 12.2048 11.9015 12.1 12.2937 12.1H18.7001V2.20001C18.7001 1.90827 18.816 1.62848 19.0223 1.42219C19.2286 1.2159 19.5084 1.10001 19.8001 1.10001H50.6001C50.8918 1.10001 51.1716 1.2159 51.3779 1.42219C51.5842 1.62848 51.7001 1.90827 51.7001 2.20001V37.4C51.7001 37.6917 51.5842 37.9715 51.3779 38.1778C51.1716 38.3841 50.8918 38.5 50.6001 38.5H46.2001" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M15.3999 38.5H37.3999" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M18.7002 12.1V34.1" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M1.1001 34.1H51.7001" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>
</div>
<div class="highlights-banner__text">
<span class="highlights-banner__heading">
Fast Shipping
</span>
<p>Fast and convenient door to door delivery</p>
</div>
</div>
<div
class="highlights-banner__block highlights-banner__align-left"
data-highlights-block
>
<div class="highlights-banner__icon">
<svg class="icon-credit-card " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="44" height="44" viewBox="0 0 44 44" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M37.4467 14.9787V3.74468C37.4467 2.99982 37.1508 2.28546 36.6241 1.75877C36.0974 1.23207 35.383 0.936172 34.6382 0.936172H3.74455C2.99968 0.936172 2.28533 1.23207 1.75863 1.75877C1.23193 2.28546 0.936035 2.99982 0.936035 3.74468V26.2128C0.936035 26.9576 1.23193 27.672 1.75863 28.1987C2.28533 28.7254 2.99968 29.0213 3.74455 29.0213H20.5956" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M0.936035 9.36169H37.4467" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.55322 16.3774H17.7873" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.55322 20.161H12.1702" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M26.2129 31.0213C26.2129 29.9167 27.1083 29.0213 28.2129 29.0213H41.064C42.1685 29.0213 43.064 29.9167 43.064 31.0213V41.0638C43.064 42.1684 42.1685 43.0638 41.064 43.0638H28.2129C27.1083 43.0638 26.2129 42.1684 26.2129 41.0638V31.0213Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M34.6385 20.5957C33.1488 20.5957 31.7201 21.1875 30.6667 22.2409C29.6133 23.2943 29.0215 24.723 29.0215 26.2128V29.0213H40.2555V26.2128C40.2555 24.723 39.6637 23.2943 38.6103 22.2409C37.5569 21.1875 36.1282 20.5957 34.6385 20.5957Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> <path d="M34.6382 35.3947C34.777 35.3947 34.9128 35.4359 35.0282 35.513C35.1437 35.5902 35.2337 35.6999 35.2868 35.8282C35.34 35.9565 35.3539 36.0976 35.3268 36.2338C35.2997 36.37 35.2328 36.4951 35.1346 36.5933C35.0364 36.6915 34.9113 36.7584 34.7751 36.7855C34.6389 36.8126 34.4978 36.7987 34.3695 36.7455C34.2412 36.6924 34.1315 36.6024 34.0544 36.4869C33.9772 36.3715 33.936 36.2357 33.936 36.0968C33.936 35.9106 34.01 35.732 34.1417 35.6004C34.2734 35.4687 34.4519 35.3947 34.6382 35.3947" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> </svg>
</div>
<div class="highlights-banner__text">
<span class="highlights-banner__heading">
Payment Security
</span>
<p>We have secured payment methods</p>
</div>
</div>
</div>
</div>
</div><div id="shopify-section-template--15492296147031__dynamic_html_knfnMB" class="shopify-section html--section"><script
type="application/json"
data-section-id="template--15492296147031__dynamic_html_knfnMB"
data-section-type="dynamic-html"
></script>
<section class="custom-html--container">
<div class="rte" data-rte>
<h1 style="text-align:center; margin-bottom:-50px">ABOUT US</h1>
</div>
</section>
</div><div id="shopify-section-template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0" class="shopify-section rich-text--section"><script
type="application/json"
data-section-id="template--15492296147031__dfd0cad5-31d3-46af-b6e4-5430bd9c43e0"
data-section-type="dynamic-rich-text"
></script>
<script type="application/pxs-animation-mapping+json">
{
"blocks": [".rich-text-block"],
"elements": []
}
</script>
<section
class="
rich-text--container
rich-text-full-width
"
>
<div
class="
rich-text-block
rich-text-alignment-center
"
>
<div class="rich-text-content rte" data-rte>
<p><strong>LaptopParts.ca </strong>is an e-tailer specializing in the distribution and sales of computer, laptop and tablet parts and accessories. We are a premiere source for all major brand parts and accessories, with over 100,000 active products in our database. Through our various distribution agreements across North America and overseas, we have the largest available inventory of parts in Canada. Our inventory is stocked and shipped from Canada. (Alexandria, Ontario)</p><p><a href="/pages/about-us" title="About Us"><strong>Read More</strong></a></p>
</div>
</div>
</section>
</div><div id="shopify-section-template--15492296147031__dynamic_html_fKi4qq" class="shopify-section html--section"><script
type="application/json"
data-section-id="template--15492296147031__dynamic_html_fKi4qq"
data-section-type="dynamic-html"
></script>
<section class="custom-html--container">
<div class="rte" data-rte>
<div id="SA_wrapper_d49Jzy96tCVD" class="SA__wrapper"></div><script type="text/javascript">var sa_interval = 5000;function saLoadScript(src) { var js = window.document.createElement('script'); js.src = src; js.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(js); } if (typeof(shopper_first) == 'undefined') saLoadScript('https://www.shopperapproved.com/widgets/40623/merchant/rotating-widget/d49Jzy96tCVD.js?v=2'); </script>
</div>
</section>
</div>
</main>
<!-- BEGIN sections: footer-group -->
<div id="shopify-section-sections--15492291100759__footer" class="shopify-section shopify-section-group-footer-group"><script
type="application/json"
data-section-id="sections--15492291100759__footer"
data-section-type="static-footer">
</script>
<footer role="contentinfo" aria-label="Footer">
<section class="site-footer-wrapper">
<div class="site-footer-item">
<div class="site-footer-blocks column-count-4">
<div class="site-footer-block-item site-footer-block-menu has-accordion" >
<h2 class="site-footer-block-title" data-accordion-trigger>
FURTHER INFO.
<span class="site-footer-block-icon accordion--icon">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="14"
height="8"
viewBox="0 0 14 8"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>
</span>
</h2>
<div class="site-footer-block-content">
<ul
class="
navmenu
navmenu-depth-1
"
data-navmenu
data-accordion-content
>
<li
class="navmenu-item navmenu-id-home"
>
<a
class="
navmenu-link
navmenu-link-depth-1
navmenu-link-active
"
href="/"
>
Home
</a>
</li>
<li
class="navmenu-item navmenu-id-search"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/search"
>
Search
</a>
</li>
<li
class="navmenu-item navmenu-id-about-us"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/about-us"
>
About Us
</a>
</li>
<li
class="navmenu-item navmenu-id-parts-request"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/part-request"
>
Parts Request
</a>
</li>
<li
class="navmenu-item navmenu-id-repair-centers"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/store-locator"
>
Repair Centers
</a>
</li>
<li
class="navmenu-item navmenu-id-francais"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/francais"
>
Français
</a>
</li>
<li
class="navmenu-item navmenu-id-reviews"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/reviews"
>
Reviews
</a>
</li>
</ul>
<!-- TG seal - snippets/footer.liquid -->
<div style="margin-top: 2em;">
<a href="https://www.shopperapproved.com/reviews/laptopparts.ca/" class="shopperlink new-sa-seals placement-1950"><img src="//www.shopperapproved.com/seal/40623/1950-sa-seal.gif" style="border-radius: 4px;" alt="Customer Reviews" oncontextmenu="var d = new Date(); alert('Copying Prohibited by Law - This image and all included logos are copyrighted by Shopper Approved \251 '+d.getFullYear()+'.'); return false;" /></a><script type="text/javascript"> (function() { var js = window.document.createElement("script"); js.innerHTML = 'function openshopperapproved(o){ var e="Microsoft Internet Explorer"!=navigator.appName?"yes":"no",n=screen.availHeight-90,r=940;return window.innerWidth<1400&&(r=620),window.open(this.href,"shopperapproved","location="+e+",scrollbars=yes,width="+r+",height="+n+",menubar=no,toolbar=no"),o.stopPropagation&&o.stopPropagation(),!1}!function(){for(var o=document.getElementsByClassName("shopperlink"),e=0,n=o.length;e<n;e++)o[e].onclick=openshopperapproved}();'; js.type = "text/javascript"; document.getElementsByTagName("head")[0].appendChild(js);var link = document.createElement('link');link.rel = 'stylesheet';link.type = 'text/css';link.href = "//www.shopperapproved.com/seal/1950.css";document.getElementsByTagName('head')[0].appendChild(link);})();</script>
<style type="text/css">@media (max-width: 500px) { .tgfloat img { width:145px; }}</style><div class="tgbanner " style="display: inline;"><a href="https://app.trustguard.com/certificate/laptopparts.ca" target="_blank"><img alt="Trust Guard Security Scanned" class="tgfloat-inner" src="https://seal.trustguard.com/sites/laptopparts.ca/670ff4366765e205f54dd5ec.svg" style="border: 0; height: 56px; " oncontextmenu="var d = new Date(); alert('Copying Prohibited by Law - This image and all included logos are copyrighted by Trust Guard '+d.getFullYear()+'.'); return false;" /></a></div>
</div>
<!-- END TG seal - snippets/footer.liquid -->
</div>
</div>
<div class="site-footer-block-item site-footer-block-menu has-accordion" >
<h2 class="site-footer-block-title" data-accordion-trigger>
CUSTOMER SERVICE
<span class="site-footer-block-icon accordion--icon">
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="14"
height="8"
viewBox="0 0 14 8"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>
</span>
</h2>
<div class="site-footer-block-content">
<ul
class="
navmenu
navmenu-depth-1
"
data-navmenu
data-accordion-content
>
<li
class="navmenu-item navmenu-id-privacy-policy"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/privacy-policy"
>
Privacy Policy
</a>
</li>
<li
class="navmenu-item navmenu-id-return-policy"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/returns"
>
Return Policy
</a>
</li>
<li
class="navmenu-item navmenu-id-shipping"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/shipping"
>
Shipping
</a>
</li>
<li
class="navmenu-item navmenu-id-warranty"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/pages/warranty"
>
Warranty
</a>
</li>
<li
class="navmenu-item navmenu-id-blogs"
>
<a
class="
navmenu-link
navmenu-link-depth-1
"
href="/blogs/news/how-to-enhance-your-laptops-performance-top-tips-for-optimization"
>
Blogs
</a>
</li>
</ul>
<!-- TG seal - snippets/footer.liquid -->
<!-- END TG seal - snippets/footer.liquid -->
</div>
</div>
<div class="site-footer-block-item site-footer-block-social-accounts " >
<h2 class="site-footer-block-title">
Follow us
</h2>
<div class="site-footer-block-content">
<div class="social-icons">
<a
class="social-link"
title="Facebook"
href="https://web.facebook.com/laptopparts.ca/?_rdc=1&_rdr"
target="_blank">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M13.591 6.00441C11.5868 6.11515 9.75158 6.92966 8.34448 8.333C7.44444 9.23064 6.78641 10.2982 6.39238 11.5002C6.01229 12.6596 5.90552 13.9193 6.08439 15.1343C6.18456 15.8146 6.36736 16.4631 6.63981 17.1046C6.71166 17.2738 6.89438 17.6476 6.98704 17.815C7.22995 18.2538 7.52906 18.6904 7.84853 19.0725C8.16302 19.4486 8.56717 19.8479 8.94482 20.1556C9.6776 20.7526 10.5183 21.2186 11.4085 21.5211C11.8412 21.6681 12.259 21.7723 12.7342 21.8517L12.751 21.8545V19.0664V16.2783H11.7348H10.7186V15.1231V13.9678H11.7344H12.7503L12.7531 12.9265C12.756 11.8203 12.7553 11.845 12.7927 11.5862C12.9306 10.6339 13.3874 9.91646 14.1198 9.50212C14.4564 9.31168 14.8782 9.18341 15.331 9.13374C15.791 9.0833 16.55 9.12126 17.351 9.23478C17.4659 9.25105 17.5612 9.26437 17.5629 9.26437C17.5646 9.26437 17.566 9.70662 17.566 10.2472V11.2299L16.9679 11.233C16.3284 11.2363 16.299 11.2379 16.1298 11.2771C15.6926 11.3785 15.4015 11.6608 15.2983 12.0834C15.2566 12.2542 15.256 12.2685 15.256 13.1531V13.9678H16.3622C17.3606 13.9678 17.4685 13.9689 17.4685 13.9795C17.4685 13.9921 17.1263 16.2236 17.1191 16.2578L17.1148 16.2783H16.1854H15.256V19.0647V21.8511L15.2954 21.8459C15.4396 21.8271 15.8337 21.7432 16.0548 21.6844C16.5933 21.5411 17.079 21.3576 17.581 21.1076C19.3154 20.2441 20.6895 18.7615 21.4192 16.9663C21.7498 16.153 21.936 15.3195 21.9915 14.4052C22.0028 14.2197 22.0028 13.7268 21.9916 13.5415C21.9403 12.6947 21.7817 11.9389 21.4942 11.1712C20.8665 9.49533 19.6589 8.05123 18.1135 7.12853C17.7376 6.90413 17.2813 6.68103 16.8985 6.53456C16.1262 6.23908 15.3815 6.07432 14.5323 6.01114C14.3897 6.00053 13.7447 5.99591 13.591 6.00441Z" fill="currentColor"/> </svg>
<span class="visually-hidden">Find us on Facebook</span>
</a>
<a
class="social-link"
title="Twitter"
href="https://twitter.com/i/flow/login?redirect_after_login=%2FLaptopParts_ca"
target="_blank">
<svg width="28" height="28" viewBox="0 0 28 28" fill="none" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" clip-rule="evenodd" d="M16.7107 8.01016C16.0674 8.08828 15.4592 8.34677 14.9808 8.74546C14.3619 9.26117 13.9733 9.932 13.8282 10.735C13.7732 11.0393 13.7814 11.5765 13.8457 11.8826C13.8581 11.9415 13.8648 11.9931 13.8606 11.9973C13.8565 12.0014 13.7526 11.9967 13.6299 11.9867C11.6498 11.8255 9.86436 11.0998 8.32993 9.83247C8.08976 9.63411 7.46709 9.0206 7.25993 8.77819C7.17962 8.68424 7.10806 8.60502 7.10087 8.60215C7.07841 8.59318 6.89133 8.99533 6.82319 9.19908C6.5182 10.1109 6.62714 11.0997 7.12305 11.9207C7.35156 12.299 7.6175 12.5843 8.04875 12.914L8.09561 12.9498L7.96283 12.9404C7.56691 12.9125 7.16242 12.8032 6.79124 12.6238C6.70962 12.5844 6.63644 12.5494 6.62862 12.546C6.60958 12.5379 6.62905 12.8651 6.6599 13.0716C6.85098 14.351 7.82335 15.4305 9.06804 15.7452C9.14752 15.7653 9.21253 15.786 9.21253 15.7913C9.21253 15.8015 9.03887 15.8403 8.86887 15.8681C8.81302 15.8773 8.65134 15.8888 8.50958 15.8937C8.27595 15.9018 8.16933 15.8959 7.85692 15.8577L7.77444 15.8476L7.81534 15.9624C7.88056 16.1455 8.04381 16.4672 8.16129 16.6441C8.72962 17.4998 9.64218 18.0285 10.6963 18.1127L10.8288 18.1233L10.7744 18.169C10.6906 18.2393 10.2073 18.5566 10.0342 18.6548C9.24773 19.1015 8.37784 19.377 7.42859 19.4803C7.13755 19.512 6.46302 19.5159 6.19231 19.4876C6.09057 19.4769 6.00412 19.4714 6.0002 19.4753C5.99011 19.4853 6.36772 19.7084 6.62722 19.8458C7.55676 20.3377 8.59674 20.68 9.63431 20.8355C10.3733 20.9463 11.2677 20.9669 12.04 20.8911C14.1558 20.6832 16.0078 19.839 17.4899 18.4067C19.0217 16.9265 20.0398 14.8743 20.31 12.7228C20.3571 12.3475 20.3722 12.092 20.3731 11.6571L20.3739 11.2127L20.4579 11.1524C20.7159 10.9673 21.1178 10.6063 21.3633 10.3394C21.6026 10.0792 22.0329 9.53139 21.998 9.53139C21.9933 9.53139 21.8754 9.5763 21.7362 9.6312C21.4534 9.74268 21.2125 9.81851 20.8927 9.8968C20.6687 9.95158 20.2052 10.0345 20.1763 10.025C20.1672 10.022 20.208 9.98764 20.2669 9.94871C20.7209 9.64839 21.1173 9.20076 21.3654 8.70831C21.4639 8.5128 21.5639 8.2633 21.5495 8.24903C21.5445 8.24406 21.4849 8.27187 21.4169 8.31084C20.9381 8.58539 20.2815 8.83829 19.6928 8.97486L19.4783 9.02465L19.3156 8.87036C18.8586 8.43683 18.259 8.14443 17.5951 8.03122C17.4261 8.0024 16.8815 7.98943 16.7107 8.01016Z" fill="currentColor"/> </svg>
<span class="visually-hidden">Find us on Twitter</span>
</a>
</div>
</div>
</div>
<div class="site-footer-block-item site-footer-block-rich-text " >
<h2 class="site-footer-block-title">
Contact Us
</h2>
<div class="site-footer-block-content rte">
<p>📍 215 Main St N<br/>Alexandria, ON, Canada<br/>K0C 1A0</p><p>📞 Call us at 1-800-934-4202</p><p>🗨️ Text us at 1-613-704-4708</p><p>✉️ Email us at service@laptopparts.ca</p>
</div>
</div>
</div>
</div>
<div class="site-footer-item site-footer-item--information">
<div class="site-footer__row site-footer__row--first">
<div class="site-footer-right ">
<div class="shopify-cross-border">
</div>
<ul class="payment-icons">
<li class="payment-icons-item">
<svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
</li>
<li class="payment-icons-item">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
</li>
<li class="payment-icons-item">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>
</li>
<li class="payment-icons-item">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
</li>
</ul></div>
</div>
<div class="site-footer__row site-footer__row--second">
<div class="site-footer__row-inner-wrapper-left"><p class="site-footer-credits">
<b>LaptopParts.ca</b>
</p>
<p class="site-footer-credits" style="color:black;">Developed By <a href="https://searchaly.com" style="text-decoration:none;color:black;">Searchaly</a>
</p>
</div>
<div class="site-footer-right ">
<div class="shopify-cross-border">
</div>
<ul class="payment-icons">
<li class="payment-icons-item">
<svg xmlns="http://www.w3.org/2000/svg" role="img" aria-labelledby="pi-american_express" viewBox="0 0 38 24" width="38" height="24"><title id="pi-american_express">American Express</title><path fill="#000" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3Z" opacity=".07"/><path fill="#006FCF" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32Z"/><path fill="#FFF" d="M22.012 19.936v-8.421L37 11.528v2.326l-1.732 1.852L37 17.573v2.375h-2.766l-1.47-1.622-1.46 1.628-9.292-.02Z"/><path fill="#006FCF" d="M23.013 19.012v-6.57h5.572v1.513h-3.768v1.028h3.678v1.488h-3.678v1.01h3.768v1.531h-5.572Z"/><path fill="#006FCF" d="m28.557 19.012 3.083-3.289-3.083-3.282h2.386l1.884 2.083 1.89-2.082H37v.051l-3.017 3.23L37 18.92v.093h-2.307l-1.917-2.103-1.898 2.104h-2.321Z"/><path fill="#FFF" d="M22.71 4.04h3.614l1.269 2.881V4.04h4.46l.77 2.159.771-2.159H37v8.421H19l3.71-8.421Z"/><path fill="#006FCF" d="m23.395 4.955-2.916 6.566h2l.55-1.315h2.98l.55 1.315h2.05l-2.904-6.566h-2.31Zm.25 3.777.875-2.09.873 2.09h-1.748Z"/><path fill="#006FCF" d="M28.581 11.52V4.953l2.811.01L32.84 9l1.456-4.046H37v6.565l-1.74.016v-4.51l-1.644 4.494h-1.59L30.35 7.01v4.51h-1.768Z"/></svg>
</li>
<li class="payment-icons-item">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" role="img" x="0" y="0" width="38" height="24" viewBox="0 0 165.521 105.965" xml:space="preserve" aria-labelledby="pi-apple_pay"><title id="pi-apple_pay">Apple Pay</title><path fill="#000" d="M150.698 0H14.823c-.566 0-1.133 0-1.698.003-.477.004-.953.009-1.43.022-1.039.028-2.087.09-3.113.274a10.51 10.51 0 0 0-2.958.975 9.932 9.932 0 0 0-4.35 4.35 10.463 10.463 0 0 0-.975 2.96C.113 9.611.052 10.658.024 11.696a70.22 70.22 0 0 0-.022 1.43C0 13.69 0 14.256 0 14.823v76.318c0 .567 0 1.132.002 1.699.003.476.009.953.022 1.43.028 1.036.09 2.084.275 3.11a10.46 10.46 0 0 0 .974 2.96 9.897 9.897 0 0 0 1.83 2.52 9.874 9.874 0 0 0 2.52 1.83c.947.483 1.917.79 2.96.977 1.025.183 2.073.245 3.112.273.477.011.953.017 1.43.02.565.004 1.132.004 1.698.004h135.875c.565 0 1.132 0 1.697-.004.476-.002.952-.009 1.431-.02 1.037-.028 2.085-.09 3.113-.273a10.478 10.478 0 0 0 2.958-.977 9.955 9.955 0 0 0 4.35-4.35c.483-.947.789-1.917.974-2.96.186-1.026.246-2.074.274-3.11.013-.477.02-.954.022-1.43.004-.567.004-1.132.004-1.699V14.824c0-.567 0-1.133-.004-1.699a63.067 63.067 0 0 0-.022-1.429c-.028-1.038-.088-2.085-.274-3.112a10.4 10.4 0 0 0-.974-2.96 9.94 9.94 0 0 0-4.35-4.35A10.52 10.52 0 0 0 156.939.3c-1.028-.185-2.076-.246-3.113-.274a71.417 71.417 0 0 0-1.431-.022C151.83 0 151.263 0 150.698 0z" /><path fill="#FFF" d="M150.698 3.532l1.672.003c.452.003.905.008 1.36.02.793.022 1.719.065 2.583.22.75.135 1.38.34 1.984.648a6.392 6.392 0 0 1 2.804 2.807c.306.6.51 1.226.645 1.983.154.854.197 1.783.218 2.58.013.45.019.9.02 1.36.005.557.005 1.113.005 1.671v76.318c0 .558 0 1.114-.004 1.682-.002.45-.008.9-.02 1.35-.022.796-.065 1.725-.221 2.589a6.855 6.855 0 0 1-.645 1.975 6.397 6.397 0 0 1-2.808 2.807c-.6.306-1.228.511-1.971.645-.881.157-1.847.2-2.574.22-.457.01-.912.017-1.379.019-.555.004-1.113.004-1.669.004H14.801c-.55 0-1.1 0-1.66-.004a74.993 74.993 0 0 1-1.35-.018c-.744-.02-1.71-.064-2.584-.22a6.938 6.938 0 0 1-1.986-.65 6.337 6.337 0 0 1-1.622-1.18 6.355 6.355 0 0 1-1.178-1.623 6.935 6.935 0 0 1-.646-1.985c-.156-.863-.2-1.788-.22-2.578a66.088 66.088 0 0 1-.02-1.355l-.003-1.327V14.474l.002-1.325a66.7 66.7 0 0 1 .02-1.357c.022-.792.065-1.717.222-2.587a6.924 6.924 0 0 1 .646-1.981c.304-.598.7-1.144 1.18-1.623a6.386 6.386 0 0 1 1.624-1.18 6.96 6.96 0 0 1 1.98-.646c.865-.155 1.792-.198 2.586-.22.452-.012.905-.017 1.354-.02l1.677-.003h135.875" /><g><g><path fill="#000" d="M43.508 35.77c1.404-1.755 2.356-4.112 2.105-6.52-2.054.102-4.56 1.355-6.012 3.112-1.303 1.504-2.456 3.959-2.156 6.266 2.306.2 4.61-1.152 6.063-2.858" /><path fill="#000" d="M45.587 39.079c-3.35-.2-6.196 1.9-7.795 1.9-1.6 0-4.049-1.8-6.698-1.751-3.447.05-6.645 2-8.395 5.1-3.598 6.2-.95 15.4 2.55 20.45 1.699 2.5 3.747 5.25 6.445 5.151 2.55-.1 3.549-1.65 6.647-1.65 3.097 0 3.997 1.65 6.696 1.6 2.798-.05 4.548-2.5 6.247-5 1.95-2.85 2.747-5.6 2.797-5.75-.05-.05-5.396-2.101-5.446-8.251-.05-5.15 4.198-7.6 4.398-7.751-2.399-3.548-6.147-3.948-7.447-4.048" /></g><g><path fill="#000" d="M78.973 32.11c7.278 0 12.347 5.017 12.347 12.321 0 7.33-5.173 12.373-12.529 12.373h-8.058V69.62h-5.822V32.11h14.062zm-8.24 19.807h6.68c5.07 0 7.954-2.729 7.954-7.46 0-4.73-2.885-7.434-7.928-7.434h-6.706v14.894z" /><path fill="#000" d="M92.764 61.847c0-4.809 3.665-7.564 10.423-7.98l7.252-.442v-2.08c0-3.04-2.001-4.704-5.562-4.704-2.938 0-5.07 1.507-5.51 3.82h-5.252c.157-4.86 4.731-8.395 10.918-8.395 6.654 0 10.995 3.483 10.995 8.89v18.663h-5.38v-4.497h-.13c-1.534 2.937-4.914 4.782-8.579 4.782-5.406 0-9.175-3.222-9.175-8.057zm17.675-2.417v-2.106l-6.472.416c-3.64.234-5.536 1.585-5.536 3.95 0 2.288 1.975 3.77 5.068 3.77 3.95 0 6.94-2.522 6.94-6.03z" /><path fill="#000" d="M120.975 79.652v-4.496c.364.051 1.247.103 1.715.103 2.573 0 4.029-1.09 4.913-3.899l.52-1.663-9.852-27.293h6.082l6.863 22.146h.13l6.862-22.146h5.927l-10.216 28.67c-2.34 6.577-5.017 8.735-10.683 8.735-.442 0-1.872-.052-2.261-.157z" /></g></g></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-diners_club"><title id="pi-diners_club">Diners Club</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M12 12v3.7c0 .3-.2.3-.5.2-1.9-.8-3-3.3-2.3-5.4.4-1.1 1.2-2 2.3-2.4.4-.2.5-.1.5.2V12zm2 0V8.3c0-.3 0-.3.3-.2 2.1.8 3.2 3.3 2.4 5.4-.4 1.1-1.2 2-2.3 2.4-.4.2-.4.1-.4-.2V12zm7.2-7H13c3.8 0 6.8 3.1 6.8 7s-3 7-6.8 7h8.2c3.8 0 6.8-3.1 6.8-7s-3-7-6.8-7z" fill="#3086C8"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" width="38" height="24" role="img" aria-labelledby="pi-discover" fill="none" xmlns="http://www.w3.org/2000/svg"><title id="pi-discover">Discover</title><path fill="#000" opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32z" fill="#fff"/><path d="M3.57 7.16H2v5.5h1.57c.83 0 1.43-.2 1.96-.63.63-.52 1-1.3 1-2.11-.01-1.63-1.22-2.76-2.96-2.76zm1.26 4.14c-.34.3-.77.44-1.47.44h-.29V8.1h.29c.69 0 1.11.12 1.47.44.37.33.59.84.59 1.37 0 .53-.22 1.06-.59 1.39zm2.19-4.14h1.07v5.5H7.02v-5.5zm3.69 2.11c-.64-.24-.83-.4-.83-.69 0-.35.34-.61.8-.61.32 0 .59.13.86.45l.56-.73c-.46-.4-1.01-.61-1.62-.61-.97 0-1.72.68-1.72 1.58 0 .76.35 1.15 1.35 1.51.42.15.63.25.74.31.21.14.32.34.32.57 0 .45-.35.78-.83.78-.51 0-.92-.26-1.17-.73l-.69.67c.49.73 1.09 1.05 1.9 1.05 1.11 0 1.9-.74 1.9-1.81.02-.89-.35-1.29-1.57-1.74zm1.92.65c0 1.62 1.27 2.87 2.9 2.87.46 0 .86-.09 1.34-.32v-1.26c-.43.43-.81.6-1.29.6-1.08 0-1.85-.78-1.85-1.9 0-1.06.79-1.89 1.8-1.89.51 0 .9.18 1.34.62V7.38c-.47-.24-.86-.34-1.32-.34-1.61 0-2.92 1.28-2.92 2.88zm12.76.94l-1.47-3.7h-1.17l2.33 5.64h.58l2.37-5.64h-1.16l-1.48 3.7zm3.13 1.8h3.04v-.93h-1.97v-1.48h1.9v-.93h-1.9V8.1h1.97v-.94h-3.04v5.5zm7.29-3.87c0-1.03-.71-1.62-1.95-1.62h-1.59v5.5h1.07v-2.21h.14l1.48 2.21h1.32l-1.73-2.32c.81-.17 1.26-.72 1.26-1.56zm-2.16.91h-.31V8.03h.33c.67 0 1.03.28 1.03.82 0 .55-.36.85-1.05.85z" fill="#231F20"/><path d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint0_linear)"/><path opacity=".65" d="M20.16 12.86a2.931 2.931 0 100-5.862 2.931 2.931 0 000 5.862z" fill="url(#pi-paint1_linear)"/><path d="M36.57 7.506c0-.1-.07-.15-.18-.15h-.16v.48h.12v-.19l.14.19h.14l-.16-.2c.06-.01.1-.06.1-.13zm-.2.07h-.02v-.13h.02c.06 0 .09.02.09.06 0 .05-.03.07-.09.07z" fill="#231F20"/><path d="M36.41 7.176c-.23 0-.42.19-.42.42 0 .23.19.42.42.42.23 0 .42-.19.42-.42 0-.23-.19-.42-.42-.42zm0 .77c-.18 0-.34-.15-.34-.35 0-.19.15-.35.34-.35.18 0 .33.16.33.35 0 .19-.15.35-.33.35z" fill="#231F20"/><path d="M37 12.984S27.09 19.873 8.976 23h26.023a2 2 0 002-1.984l.024-3.02L37 12.985z" fill="#F48120"/><defs><linearGradient id="pi-paint0_linear" x1="21.657" y1="12.275" x2="19.632" y2="9.104" gradientUnits="userSpaceOnUse"><stop stop-color="#F89F20"/><stop offset=".25" stop-color="#F79A20"/><stop offset=".533" stop-color="#F68D20"/><stop offset=".62" stop-color="#F58720"/><stop offset=".723" stop-color="#F48120"/><stop offset="1" stop-color="#F37521"/></linearGradient><linearGradient id="pi-paint1_linear" x1="21.338" y1="12.232" x2="18.378" y2="6.446" gradientUnits="userSpaceOnUse"><stop stop-color="#F58720"/><stop offset=".359" stop-color="#E16F27"/><stop offset=".703" stop-color="#D4602C"/><stop offset=".982" stop-color="#D05B2E"/></linearGradient></defs></svg>
</li>
<li class="payment-icons-item">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-google_pay"><title id="pi-google_pay">Google Pay</title><path d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000" opacity=".07"/><path d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32" fill="#FFF"/><path d="M18.093 11.976v3.2h-1.018v-7.9h2.691a2.447 2.447 0 0 1 1.747.692 2.28 2.28 0 0 1 .11 3.224l-.11.116c-.47.447-1.098.69-1.747.674l-1.673-.006zm0-3.732v2.788h1.698c.377.012.741-.135 1.005-.404a1.391 1.391 0 0 0-1.005-2.354l-1.698-.03zm6.484 1.348c.65-.03 1.286.188 1.778.613.445.43.682 1.03.65 1.649v3.334h-.969v-.766h-.049a1.93 1.93 0 0 1-1.673.931 2.17 2.17 0 0 1-1.496-.533 1.667 1.667 0 0 1-.613-1.324 1.606 1.606 0 0 1 .613-1.336 2.746 2.746 0 0 1 1.698-.515c.517-.02 1.03.093 1.49.331v-.208a1.134 1.134 0 0 0-.417-.901 1.416 1.416 0 0 0-.98-.368 1.545 1.545 0 0 0-1.319.717l-.895-.564a2.488 2.488 0 0 1 2.182-1.06zM23.29 13.52a.79.79 0 0 0 .337.662c.223.176.5.269.785.263.429-.001.84-.17 1.146-.472.305-.286.478-.685.478-1.103a2.047 2.047 0 0 0-1.324-.374 1.716 1.716 0 0 0-1.03.294.883.883 0 0 0-.392.73zm9.286-3.75l-3.39 7.79h-1.048l1.281-2.728-2.224-5.062h1.103l1.612 3.885 1.569-3.885h1.097z" fill="#5F6368"/><path d="M13.986 11.284c0-.308-.024-.616-.073-.92h-4.29v1.747h2.451a2.096 2.096 0 0 1-.9 1.373v1.134h1.464a4.433 4.433 0 0 0 1.348-3.334z" fill="#4285F4"/><path d="M9.629 15.721a4.352 4.352 0 0 0 3.01-1.097l-1.466-1.14a2.752 2.752 0 0 1-4.094-1.44H5.577v1.17a4.53 4.53 0 0 0 4.052 2.507z" fill="#34A853"/><path d="M7.079 12.05a2.709 2.709 0 0 1 0-1.735v-1.17H5.577a4.505 4.505 0 0 0 0 4.075l1.502-1.17z" fill="#FBBC04"/><path d="M9.629 8.44a2.452 2.452 0 0 1 1.74.68l1.3-1.293a4.37 4.37 0 0 0-3.065-1.183 4.53 4.53 0 0 0-4.027 2.5l1.502 1.171a2.715 2.715 0 0 1 2.55-1.875z" fill="#EA4335"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-master"><title id="pi-master">Mastercard</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><circle fill="#EB001B" cx="15" cy="12" r="7"/><circle fill="#F79E1B" cx="23" cy="12" r="7"/><path fill="#FF5F00" d="M22 12c0-2.4-1.2-4.5-3-5.7-1.8 1.3-3 3.4-3 5.7s1.2 4.5 3 5.7c1.8-1.2 3-3.3 3-5.7z"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" width="38" height="24" role="img" aria-labelledby="pi-paypal"><title id="pi-paypal">PayPal</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path fill="#003087" d="M23.9 8.3c.2-1 0-1.7-.6-2.3-.6-.7-1.7-1-3.1-1h-4.1c-.3 0-.5.2-.6.5L14 15.6c0 .2.1.4.3.4H17l.4-3.4 1.8-2.2 4.7-2.1z"/><path fill="#3086C8" d="M23.9 8.3l-.2.2c-.5 2.8-2.2 3.8-4.6 3.8H18c-.3 0-.5.2-.6.5l-.6 3.9-.2 1c0 .2.1.4.3.4H19c.3 0 .5-.2.5-.4v-.1l.4-2.4v-.1c0-.2.3-.4.5-.4h.3c2.1 0 3.7-.8 4.1-3.2.2-1 .1-1.8-.4-2.4-.1-.5-.3-.7-.5-.8z"/><path fill="#012169" d="M23.3 8.1c-.1-.1-.2-.1-.3-.1-.1 0-.2 0-.3-.1-.3-.1-.7-.1-1.1-.1h-3c-.1 0-.2 0-.2.1-.2.1-.3.2-.3.4l-.7 4.4v.1c0-.3.3-.5.6-.5h1.3c2.5 0 4.1-1 4.6-3.8v-.2c-.1-.1-.3-.2-.5-.2h-.1z"/></svg>
</li>
<li class="payment-icons-item">
<svg xmlns="http://www.w3.org/2000/svg" role="img" viewBox="0 0 38 24" width="38" height="24" aria-labelledby="pi-shopify_pay"><title id="pi-shopify_pay">Shop Pay</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z" fill="#000"/><path d="M35.889 0C37.05 0 38 .982 38 2.182v19.636c0 1.2-.95 2.182-2.111 2.182H2.11C.95 24 0 23.018 0 21.818V2.182C0 .982.95 0 2.111 0H35.89z" fill="#5A31F4"/><path d="M9.35 11.368c-1.017-.223-1.47-.31-1.47-.705 0-.372.306-.558.92-.558.54 0 .934.238 1.225.704a.079.079 0 00.104.03l1.146-.584a.082.082 0 00.032-.114c-.475-.831-1.353-1.286-2.51-1.286-1.52 0-2.464.755-2.464 1.956 0 1.275 1.15 1.597 2.17 1.82 1.02.222 1.474.31 1.474.705 0 .396-.332.582-.993.582-.612 0-1.065-.282-1.34-.83a.08.08 0 00-.107-.035l-1.143.57a.083.083 0 00-.036.111c.454.92 1.384 1.437 2.627 1.437 1.583 0 2.539-.742 2.539-1.98s-1.155-1.598-2.173-1.82v-.003zM15.49 8.855c-.65 0-1.224.232-1.636.646a.04.04 0 01-.069-.03v-2.64a.08.08 0 00-.08-.081H12.27a.08.08 0 00-.08.082v8.194a.08.08 0 00.08.082h1.433a.08.08 0 00.081-.082v-3.594c0-.695.528-1.227 1.239-1.227.71 0 1.226.521 1.226 1.227v3.594a.08.08 0 00.081.082h1.433a.08.08 0 00.081-.082v-3.594c0-1.51-.981-2.577-2.355-2.577zM20.753 8.62c-.778 0-1.507.24-2.03.588a.082.082 0 00-.027.109l.632 1.088a.08.08 0 00.11.03 2.5 2.5 0 011.318-.366c1.25 0 2.17.891 2.17 2.068 0 1.003-.736 1.745-1.669 1.745-.76 0-1.288-.446-1.288-1.077 0-.361.152-.657.548-.866a.08.08 0 00.032-.113l-.596-1.018a.08.08 0 00-.098-.035c-.799.299-1.359 1.018-1.359 1.984 0 1.46 1.152 2.55 2.76 2.55 1.877 0 3.227-1.313 3.227-3.195 0-2.018-1.57-3.492-3.73-3.492zM28.675 8.843c-.724 0-1.373.27-1.845.746-.026.027-.069.007-.069-.029v-.572a.08.08 0 00-.08-.082h-1.397a.08.08 0 00-.08.082v8.182a.08.08 0 00.08.081h1.433a.08.08 0 00.081-.081v-2.683c0-.036.043-.054.069-.03a2.6 2.6 0 001.808.7c1.682 0 2.993-1.373 2.993-3.157s-1.313-3.157-2.993-3.157zm-.271 4.929c-.956 0-1.681-.768-1.681-1.783s.723-1.783 1.681-1.783c.958 0 1.68.755 1.68 1.783 0 1.027-.713 1.783-1.681 1.783h.001z" fill="#fff"/></svg>
</li>
<li class="payment-icons-item">
<svg viewBox="0 0 38 24" xmlns="http://www.w3.org/2000/svg" role="img" width="38" height="24" aria-labelledby="pi-visa"><title id="pi-visa">Visa</title><path opacity=".07" d="M35 0H3C1.3 0 0 1.3 0 3v18c0 1.7 1.4 3 3 3h32c1.7 0 3-1.3 3-3V3c0-1.7-1.4-3-3-3z"/><path fill="#fff" d="M35 1c1.1 0 2 .9 2 2v18c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2h32"/><path d="M28.3 10.1H28c-.4 1-.7 1.5-1 3h1.9c-.3-1.5-.3-2.2-.6-3zm2.9 5.9h-1.7c-.1 0-.1 0-.2-.1l-.2-.9-.1-.2h-2.4c-.1 0-.2 0-.2.2l-.3.9c0 .1-.1.1-.1.1h-2.1l.2-.5L27 8.7c0-.5.3-.7.8-.7h1.5c.1 0 .2 0 .2.2l1.4 6.5c.1.4.2.7.2 1.1.1.1.1.1.1.2zm-13.4-.3l.4-1.8c.1 0 .2.1.2.1.7.3 1.4.5 2.1.4.2 0 .5-.1.7-.2.5-.2.5-.7.1-1.1-.2-.2-.5-.3-.8-.5-.4-.2-.8-.4-1.1-.7-1.2-1-.8-2.4-.1-3.1.6-.4.9-.8 1.7-.8 1.2 0 2.5 0 3.1.2h.1c-.1.6-.2 1.1-.4 1.7-.5-.2-1-.4-1.5-.4-.3 0-.6 0-.9.1-.2 0-.3.1-.4.2-.2.2-.2.5 0 .7l.5.4c.4.2.8.4 1.1.6.5.3 1 .8 1.1 1.4.2.9-.1 1.7-.9 2.3-.5.4-.7.6-1.4.6-1.4 0-2.5.1-3.4-.2-.1.2-.1.2-.2.1zm-3.5.3c.1-.7.1-.7.2-1 .5-2.2 1-4.5 1.4-6.7.1-.2.1-.3.3-.3H18c-.2 1.2-.4 2.1-.7 3.2-.3 1.5-.6 3-1 4.5 0 .2-.1.2-.3.2M5 8.2c0-.1.2-.2.3-.2h3.4c.5 0 .9.3 1 .8l.9 4.4c0 .1 0 .1.1.2 0-.1.1-.1.1-.1l2.1-5.1c-.1-.1 0-.2.1-.2h2.1c0 .1 0 .1-.1.2l-3.1 7.3c-.1.2-.1.3-.2.4-.1.1-.3 0-.5 0H9.7c-.1 0-.2 0-.2-.2L7.9 9.5c-.2-.2-.5-.5-.9-.6-.6-.3-1.7-.5-1.9-.5L5 8.2z" fill="#142688"/></svg>
</li>
</ul></div>
</div>
</div>
</section>
</footer>
</div>
<!-- END sections: footer-group -->
<div style="display: none;" aria-hidden="true" data-templates>
<div
class="message-banner--container"
role="alert"
data-message-banner
>
<div class="message-banner--outer">
<div class="message-banner--inner" data-message-banner-content></div>
<button
class="message-banner--close"
type="button"
aria-label="Close"
data-message-banner-close
><svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="13"
height="13"
viewBox="0 0 13 13"
>
<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"/>
</svg></button>
</div>
</div>
<section class="atc-banner--container" role="log" data-atc-banner>
<div class="atc-banner--outer">
<div class="atc-banner--inner">
<div class="atc-banner--product">
<h2 class="atc-banner--product-title">
<span class="atc-banner--product-title--icon">
<svg class="icon-checkmark " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="18" height="13" viewBox="0 0 18 13" xmlns="http://www.w3.org/2000/svg"> <path fill="currentColor" fill-rule="evenodd" d="M6.23 9.1L2.078 5.2 0 7.15 6.23 13 18 1.95 15.923 0z" /> </svg>
</span>
Added to your cart:
</h2>
<div class="atc--product">
<div class="atc--product-image" data-atc-banner-product-image>
<svg class="placeholder--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>
</div>
<div class="atc--product-details">
<h2 class="atc--product-details--title" data-atc-banner-product-title></h2>
<span class="atc--product-details--options" data-atc-banner-product-options></span>
<span class="atc--product-details--price">
<span class="atc--product-details--price-quantity" data-atc-banner-product-price-quantity></span>
<span class="atc--product-details--price-value money" data-atc-banner-product-price-value></span>
<span
class="atc--product-details--price-discounted money"
data-atc-banner-product-price-discounted
></span>
<span class="atc--product-details--unit-price hidden" data-atc-banner-unit-price>
** total_quantity ** | ** unit_price ** / ** unit_measure **
</span>
</span>
<ul class="discount-list" data-atc-banner-product-discounts>
<li class="discount-list-item">
<svg class="icon-sale-tag " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="350" height="350" viewBox="0 0 350 350" fill="none"> <path fill="currentColor" fill-rule="evenodd" clip-rule="evenodd" d="M0 197.826C0 192.95 1.93821 188.275 5.38762 184.83L179.459 10.7587C186.348 3.86966 195.692 -0.000356971 205.435 2.46966e-08H334.782C343.187 2.46966e-08 350 6.81304 350 15.2173V144.565C350 154.308 346.13 163.651 339.241 170.541L165.17 344.612C161.725 348.061 157.049 350 152.174 350C147.299 350 142.624 348.061 139.179 344.612L5.38762 210.821C1.93821 207.376 0 202.701 0 197.826ZM304.348 68.4786C304.348 81.085 294.128 91.3046 281.521 91.3046C268.915 91.3046 258.695 81.085 258.695 68.4786C258.695 55.8721 268.915 45.6525 281.521 45.6525C294.128 45.6525 304.348 55.8721 304.348 68.4786Z" fill="currentColor"/> </svg>
<span class="discount-title"></span>
(-<span class="money discount-amount"></span>)
</li>
</ul>
<span class="atc--line-item-subscriptions" data-atc-banner-product-subscription-title></span>
</div>
</div>
</div>
<div class="atc-banner--cart">
<div class="atc-banner--cart-subtotal">
<span class="atc-subtotal--label">
Cart subtotal
</span>
<span class="atc-subtotal--price money" data-atc-banner-cart-subtotal></span>
</div>
<footer class="atc-banner--cart-footer">
<a
class="button-secondary atc-button--viewcart"
href="/cart"
data-atc-banner-cart-button
>
View cart (<span></span>)
</a>
<form
action="/cart"
method="post"
aria-label="cart checkout"
>
<button class="button-primary atc-button--checkout" type="submit" name="checkout">
<svg
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd" clip-rule="evenodd" d="M2.5 11.1667C2.5 10.0622 3.39543 9.16675 4.5 9.16675H15.5C16.6046 9.16675 17.5 10.0622 17.5 11.1667V16.3334C17.5 17.438 16.6046 18.3334 15.5 18.3334H4.5C3.39543 18.3334 2.5 17.438 2.5 16.3334V11.1667Z" fill="currentColor"/>
<path d="M5.83337 9.16675V5.83341C5.83337 3.53223 7.69885 1.66675 10 1.66675C12.3012 1.66675 14.1667 3.53223 14.1667 5.83341V9.16675" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
</svg>
<span>Checkout</span>
</button>
</form>
</footer>
</div>
</div>
<button
class="atc-banner--close"
type="button"
aria-label="Close"
data-atc-banner-close
><svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="13"
height="13"
viewBox="0 0 13 13"
>
<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"/>
</svg></button>
</div>
</section>
</div>
<div class="modal" data-modal-container aria-label="modal window" data-trap-focus>
<div class="modal-inner" data-modal-inner>
<button
class="modal-close"
type="button"
aria-label="Close"
data-modal-close
>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="13"
height="13"
viewBox="0 0 13 13"
>
<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"/>
</svg>
</button>
<div class="modal-content" data-modal-content></div>
</div>
</div>
<div class="modal-1" data-modal-container-1 aria-label="modal window">
<div class="modal-inner" data-modal-inner>
<button
class="modal-close"
type="button"
aria-label="Close"
data-modal-1-close
>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
xmlns="http://www.w3.org/2000/svg"
width="13"
height="13"
viewBox="0 0 13 13"
>
<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"/>
</svg>
</button>
<div class="modal-content" data-modal-content></div>
</div>
</div>
<div
class="pswp"
tabindex="-1"
role="dialog"
aria-hidden="true"
aria-label="Product zoom dialog"
data-photoswipe
>
<div class="pswp__bg"></div>
<div class="pswp__scroll-wrap">
<div class="pswp__container" aria-hidden="true">
<div class="pswp__item"></div>
<div class="pswp__item"></div>
<div class="pswp__item"></div>
</div>
<div class="pswp__ui pswp__ui--hidden">
<div class="pswp__top-bar">
<div class="pswp__counter"></div>
<button class="pswp__button pswp__button--close" title="Close">
<span tabindex="-1">
<svg class="icon-close " aria-hidden="true" focusable="false" role="presentation" xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 18 18" fill="none"> <path d="M17 1L1 17" stroke="currentColor" stroke-width="1.75" stroke-linejoin="round"/> <path d="M1 1L17 17" stroke="currentColor" stroke-width="1.75" stroke-linejoin="round"/> </svg>
</span>
</button>
<button class="pswp__button pswp__button--share" title="Share"></button>
<button class="pswp__button pswp__button--fs" title="Toggle fullscreen"></button>
<button class="pswp__button pswp__button--zoom" title="Zoom in/out"></button>
<div class="pswp__preloader">
<div class="pswp__preloader__icn">
<div class="pswp__preloader__cut">
<div class="pswp__preloader__donut"></div>
</div>
</div>
</div>
</div>
<div class="pswp__share-modal pswp__share-modal--hidden pswp__single-tap">
<div class="pswp__share-tooltip"></div>
</div>
<button class="pswp__button pswp__button--arrow--left" title="Previous (arrow left)"></button>
<button class="pswp__button pswp__button--arrow--right" title="Next (arrow right)"></button>
<div class="pswp__caption">
<div class="pswp__caption__center"></div>
</div>
</div>
</div>
<div class="product-zoom--thumbnails" data-photoswipe-thumbs>
<button
class="gallery-navigation--scroll-button scroll-left"
aria-label="Scroll thumbnails left"
data-gallery-scroll-button
>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="14"
height="8"
viewBox="0 0 14 8"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>
</button>
<button
class="gallery-navigation--scroll-button scroll-right"
aria-label="Scroll thumbnails right"
data-gallery-scroll-button
>
<svg
aria-hidden="true"
focusable="false"
role="presentation"
width="14"
height="8"
viewBox="0 0 14 8"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path class="icon-chevron-down-left" d="M7 6.75L12.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
<path class="icon-chevron-down-right" d="M7 6.75L1.5 1.25" stroke="currentColor" stroke-width="1.75" stroke-linecap="square"/>
</svg>
</button>
<div class="product-zoom--thumb-scroller" data-photoswipe-thumb-scroller></div>
</div>
</div>
<script>
(
function () {
var classes = {
block: 'pxu-lia-block',
element: 'pxu-lia-element',
};
document
.querySelectorAll('[type="application/pxs-animation-mapping+json"]')
.forEach(function (mappingEl) {
const section = mappingEl.parentNode;
try {
const mapping = JSON.parse(mappingEl.innerHTML);
mapping.elements.forEach(function (elementSelector) {
section
.querySelectorAll(elementSelector)
.forEach(function (element) { element.classList.add(classes.element); });
});
mapping.blocks.forEach(function (blockSelector) {
section
.querySelectorAll(blockSelector)
.forEach(function (block) { block.classList.add(classes.block); });
});
} catch (error) {
console.warn('Unable to parse animation mapping', mappingEl, error);
}
});
}
)()
</script>
<script
src="//laptopparts.ca/cdn/shop/t/20/assets/empire.js?v=121528316695943026921712444022"
data-scripts
data-shopify-api-url="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/api.jquery-b0af070cfe3f5cf7c92f9e2a5da2665ee07ed2aad63bb408f8d6672f894a5996.js"
data-shopify-countries="/services/javascripts/countries.js"
data-shopify-common="//laptopparts.ca/cdn/shopifycloud/shopify/assets/themes_support/shopify_common-33bb9d312118840468a53f36b59c62c1e8f2b7d1a0a77250db9e300441827470.js"
data-shopify-cart="//laptopparts.ca/cdn/shop/t/20/assets/jquery.cart.js?66896"
data-pxu-polyfills="//laptopparts.ca/cdn/shop/t/20/assets/polyfills.min.js?v=41774645620324957141712444022"
></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"name": "LaptopParts.ca",
"url": "https://laptopparts.ca"
}
</script>
<script>
(function () {
function handleFirstTab(e) {
if (e.keyCode === 9) { // the "I am a keyboard user" key
document.body.classList.add('user-is-tabbing');
window.removeEventListener('keydown', handleFirstTab);
}
}
window.addEventListener('keydown', handleFirstTab);
})();
</script>
<link href="//laptopparts.ca/cdn/shop/t/20/assets/ripple.css?v=100240391239311985871712444022" rel="stylesheet" type="text/css" media="all" />
<script
src="//laptopparts.ca/cdn/shop/t/20/assets/instantPage.min.js?v=75111080190164688561712444022"
type="module"
defer
></script>
<script
src="//clever-predictive-search.thesupportheroes.com/js/core/main.min.js?timestamp=1698326561&shop=laptoppartsatp.myshopify.com"
defer
></script>
<!-- eDesk Shopify widget 9hs3kbe90 --><script>(window._xsq||(function(x,s){window._xsq=[];var d=function(){var c,b,a=document.createElement("iframe");a.src="javascript:false";a.title="";a.role="presentation";(a.frameElement||a).style.cssText="display: none";document.body.appendChild(a);try{b=a.contentWindow.document}catch(g){c=document.domain,a.src="javascript:var d=document.open();d.domain='"+c+"';void(0);",b=a.contentWindow.document}b.open()._l=function(){var a=this.createElement("script");c&&(this.domain=c);a.id="js-iframe-async";a.src="https://"+x+s;this.body.appendChild(a)};b.write('<body onload="document._l();">');b.close()};window.addEventListener?window.addEventListener("load",d,!1):window.attachEvent?window.attachEvent("onload",d):setTimeout(d,2E3);return _xsq})('widgets.xsellco.com','/js/widgets.js')).push(['load','9hs3kbe90',document.scripts[document.scripts.length - 1]]);</script><!-- End eDesk Shopify widget 9hs3kbe90 -->
<!-- Shopper Approved - layout/theme.liquid -->
<style>
#SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span{
vertical-align: -1px;
}
#SA_review_wrapper .SA__review_widget .SA__review_widget_item .SA__review_content .SA__review_num_ratings span:last-child{
vertical-align: -1px;
}
.star_container{
height: 24px;
margin-bottom: 5px;
}
.star_container .ind_cnt {
display: inline;
padding-left: 8px;
font-size: 13px;
vertical-align: 3px;
text-align: center;
width: 100%;
}
#product_just_stars .SA__rating_wrap, #product_just_stars .SA__total_reviews{
display: inline !important;
}
#product_just_stars .SA__review_widget_item .SA__total_reviews a{
font-size: 13px !important;
vertical-align: 0px !important;
/*border-right: 1px solid #000;
padding-right: 10px;
margin-right: 10px;*/
text-decoration: underline;
}
</style>
<script type="text/javascript"> function saLoadScript(src) { var js = window.document.createElement('script'); js.src = src; js.type = 'text/javascript'; document.getElementsByTagName("head")[0].appendChild(js); } saLoadScript("https://www.shopperapproved.com/widgets/group2.0/40623.js"); </script>
<!-- END Shopper Approved - layout/theme.liquid -->
<script type="text/javascript">!function(e,t,n){function a(){var e=t.getElementsByTagName("script")[0],n=t.createElement("script");n.type="text/javascript",n.async=!0,n.src="https://beacon-v2.helpscout.net",e.parentNode.insertBefore(n,e)}if(e.Beacon=n=function(t,n,a){e.Beacon.readyQueue.push({method:t,options:n,data:a})},n.readyQueue=[],"complete"===t.readyState)return a();e.attachEvent?e.attachEvent("onload",a):e.addEventListener("load",a,!1)}(window,document,window.Beacon||function(){});</script>
<script type="text/javascript">window.Beacon('init', '4c7bc089-215e-4a80-9d06-25571d96425f')</script>
<div id="shopify-block-AeXdFL3NiTloxRjRUY__14952540001915115444" class="shopify-block shopify-app-block">
<link id="upcart-stylesheet" rel="preload" href="https://cdn.shopify.com/extensions/6164864d-a0a4-43c5-a182-8fdf3f87b744/upcart-cart-drawer-81/assets/upcart-stylesheet.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<script>
function b64DecodeUnicode(str) {
try {
return decodeURIComponent(
atob(str)
.split('')
.map(function (c) {
return '%' + ('00' + c.charCodeAt(0).toString(16)).slice(-2);
})
.join(''),
);
} catch {
return str;
}
}
</script>
<script>
(function() {
window.upcartSettings = {};
window.upcartSettings.upcartSettings = {};
window.upcartSettings.upcartEditorSettings = {};
window.upcartSettings.stickyCartButtonEditorSettings = {};
let val;
val = b64DecodeUnicode("cmlnaHQ=");
if (val === '') {
val = b64DecodeUnicode("cmlnaHQ=");
}
window.upcartSettings.upcartSettings.cartPosition = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.disableSticky = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("dHJ1ZQ==");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.openOnAddToCart = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.redirectToCart = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.enableCartSkeletons = val;
val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJZb3VyIFNob3BwaW5nIENhcnQiLCJjaGVja291dCI6IlNlY3VyZSBDaGVja291dCDigKIge3t0b3RhbF9wcmljZX19IiwiYWRkVGV4dCI6IkFkZCIsImVtcHR5Q2FydCI6IllvdXIgY2FydCBpcyBlbXB0eSIsImRpc2NvdW50U2F2aW5ncyI6IlNhdmUiLCJjb250aW51ZVNob3BwaW5nIjoiT3IgY29udGludWUgc2hvcHBpbmciLCJ0b3RhbFNhdmluZ3MiOiJEaXNjb3VudHMiLCJzdWJ0b3RhbCI6IlN1YnRvdGFsIn0=");
if (val === '') {
val = b64DecodeUnicode("eyJjYXJ0VGl0bGUiOiJDYXJ0IOKAoiB7e2NhcnRfcXVhbnRpdHl9fSIsImNoZWNrb3V0IjoiQ2hlY2tvdXQg4oCiIHt7dG90YWxfcHJpY2V9fSIsImFkZFRleHQiOiJBZGQiLCJlbXB0eUNhcnQiOiJZb3VyIGNhcnQgaXMgZW1wdHkiLCJkaXNjb3VudFNhdmluZ3MiOiJTYXZlIiwiY29udGludWVTaG9wcGluZyI6Ik9yIGNvbnRpbnVlIHNob3BwaW5nIiwidG90YWxTYXZpbmdzIjoiRGlzY291bnRzIiwic3VidG90YWwiOiJTdWJ0b3RhbCIsImJ1bmRsZUhpZGVTaW5ndWxhckl0ZW1UZXh0IjoiSGlkZSAxIGl0ZW0iLCJidW5kbGVTaG93U2luZ3VsYXJJdGVtVGV4dCI6IlNob3cgMSBpdGVtIiwiYnVuZGxlSGlkZU11bHRpcGxlSXRlbXNUZXh0IjoiSGlkZSB7TlVNQkVSX09GX0lURU1TfSBpdGVtcyIsImJ1bmRsZVNob3dNdWx0aXBsZUl0ZW1zVGV4dCI6IlNob3cge05VTUJFUl9PRl9JVEVNU30gaXRlbXMifQ==");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.translations = val;
val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
if (val === '') {
val = b64DecodeUnicode("eyJhYm92ZUZvb3RlciI6IiIsImFib3ZlSGVhZGVyIjoiIiwiYmVsb3dIZWFkZXIiOiIiLCJiZXR3ZWVuTGluZUl0ZW1zIjoiIiwiYWJvdmVDaGVja291dEJ1dHRvbiI6IiIsImJlbG93Q2hlY2tvdXRCdXR0b24iOiIiLCJib3R0b21PZkNhcnQiOiIiLCJvbkVtcHR5Q2FydCI6IiIsInNjcmlwdHNCZWZvcmVMb2FkIjoiIn0=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.htmlFields = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("dHJ1ZQ==");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.automaticDiscount = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.basePriceForDiscount = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.hideSingleUnderscoredProperties = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.showContinueShoppingButton = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.ajaxRaceConditionPrevention = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.htmlFieldForceReRender = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.skipGoogleFonts = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.overrideScrollLocking = val;
val = b64DecodeUnicode("MTAw");
if (val === '') {
val = b64DecodeUnicode("MTAw");
}
window.upcartSettings.upcartSettings.trafficAllocationPercent = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.renderCartInShadowDom = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.cartEventTracking = val;
val = b64DecodeUnicode("bGluZQ==");
if (val === '') {
val = b64DecodeUnicode("bGluZQ==");
}
window.upcartSettings.upcartSettings.updateItemIdentifier = val;
val = b64DecodeUnicode("Knt9");
if (val === '') {
val = b64DecodeUnicode("Knt9");
}
window.upcartSettings.upcartSettings.customCSS = val;
val = b64DecodeUnicode("Knt9");
if (val === '') {
val = b64DecodeUnicode("Knt9");
}
window.upcartSettings.upcartSettings.customStickyCartCSS = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.integrationZapietEnabled = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartSettings.integrationYmqEnabled = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("dHJ1ZQ==");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.cartIsEnabled = val;
val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwYTlkMWMiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCJ9fQ==");
if (val === '') {
val = b64DecodeUnicode("eyJmaWVsZHMiOnsiY29tcGFyZUF0UHJpY2UiOnRydWUsImluaGVyaXRGb250cyI6dHJ1ZSwiYmFja2dyb3VuZENvbG9yIjoiI0ZGRkZGRiIsImNhcnRBY2NlbnRDb2xvciI6IiNmNmY2ZjciLCJidXR0b25Db2xvciI6IiMwMDAwMDAiLCJidXR0b25UZXh0Q29sb3IiOiIjRkZGRkZGIiwiYnV0dG9uVGV4dEhvdmVyQ29sb3IiOiIjZTllOWU5IiwiY2FydFRleHRDb2xvciI6IiMwMDAwMDAiLCJidXR0b25Sb3VuZGVkQ29ybmVyc1NpemUiOjAsImVuYWJsZVN1YnRvdGFsTGluZSI6ZmFsc2UsInN1YnRvdGFsVGV4dENvbG9yIjoiIzAwMDAwMCIsImNhcnRXaWR0aCI6eyJkZXNrdG9wIjoiYmFzZSIsIm1vYmlsZSI6ImZ1bGwifX19");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.settingsModule = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("IzJlYTgxOA==");
}
window.upcartSettings.upcartEditorSettings.designSettingsCartSavingsTextColor = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("YmFzZQ==");
}
window.upcartSettings.upcartEditorSettings.headerBorderBottom = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("YmFzZQ==");
}
window.upcartSettings.upcartEditorSettings.headerHeight = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("I2ZmZmZmZjAw");
}
window.upcartSettings.upcartEditorSettings.headerBackgroundColor = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("eyJ0eXBlIjoiaW5oZXJpdEhlYWRpbmdTdHlsZXMiLCJoZWFkaW5nTGV2ZWwiOiJoMiJ9");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.headerTitleContent = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("c2lkZQ==");
}
window.upcartSettings.upcartEditorSettings.headerTitleAlignment = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("dGl0bGVfX2Nsb3NlQnV0dG9u");
}
window.upcartSettings.upcartEditorSettings.headerElementArrangement = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMDBjIiwib25Ib3ZlciI6IiMwMDAwMDAxNCJ9");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.headerCloseButtonBackgroundColor = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("eyJiYXNlIjoiIzYzNzM4MSIsIm9uSG92ZXIiOm51bGx9");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.headerCloseButtonIconColor = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("c21hbGw=");
}
window.upcartSettings.upcartEditorSettings.headerCloseButtonIconSize = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("YmFzZQ==");
}
window.upcartSettings.upcartEditorSettings.headerCloseButtonIconStrokeWidth = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("bm9uZQ==");
}
window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderWidth = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("eyJiYXNlIjoiIzAwMDAwMCIsIm9uSG92ZXIiOm51bGx9");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.headerCloseButtonBorderColor = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.announcementModule = val;
val = b64DecodeUnicode("PHA+PHN0cm9uZz4qKioqKiAgRlJFRSBTSElQUElORyAqKioqKjwvc3Ryb25nPjwvcD4K");
if (val === '') {
val = b64DecodeUnicode("PHA+WW91ciBwcm9kdWN0cyBhcmUgcmVzZXJ2ZWQgZm9yIDxiPntUSU1FUn08L2I+IG1pbnV0ZXMhPC9wPg==");
}
window.upcartSettings.upcartEditorSettings.announcementEditor = val;
val = b64DecodeUnicode("I2ZmZmZmZg==");
if (val === '') {
val = b64DecodeUnicode("I0NERTBFMA==");
}
window.upcartSettings.upcartEditorSettings.announcementBackgroundColor = val;
val = b64DecodeUnicode("dG9w");
if (val === '') {
val = b64DecodeUnicode("dG9w");
}
window.upcartSettings.upcartEditorSettings.announcementModulePosition = val;
val = b64DecodeUnicode("IzEwOWMxYw==");
if (val === '') {
val = b64DecodeUnicode("I0M1RTZGRA==");
}
window.upcartSettings.upcartEditorSettings.announcementBorderColor = val;
val = b64DecodeUnicode("MA==");
if (val === '') {
val = b64DecodeUnicode("MDA6MDA=");
}
window.upcartSettings.upcartEditorSettings.announcementTimer = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("YmFzZQ==");
}
window.upcartSettings.upcartEditorSettings.announcementHeight = val;
val = b64DecodeUnicode("");
if (val === '') {
val = b64DecodeUnicode("MTU=");
}
window.upcartSettings.upcartEditorSettings.announcementTextFontSizePx = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.rewardsModule = val;
val = b64DecodeUnicode("I0UyRTJFMg==");
if (val === '') {
val = b64DecodeUnicode("I0UyRTJFMg==");
}
window.upcartSettings.upcartEditorSettings.rewardsBarBackgroundColor = val;
val = b64DecodeUnicode("IzkzRDNGRg==");
if (val === '') {
val = b64DecodeUnicode("IzkzRDNGRg==");
}
window.upcartSettings.upcartEditorSettings.rewardsBarForegroundColor = val;
val = b64DecodeUnicode("Y2FydFRvdGFs");
if (val === '') {
val = b64DecodeUnicode("Y2FydFRvdGFs");
}
window.upcartSettings.upcartEditorSettings.rewardsBasis = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.rewardsProductLinkVisible = val;
val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
if (val === '') {
val = b64DecodeUnicode("cHJvZHVjdHNPck9yZGVy");
}
window.upcartSettings.upcartEditorSettings.rewardsTargetType = val;
val = b64DecodeUnicode("MTI1");
if (val === '') {
val = b64DecodeUnicode("MTI1");
}
window.upcartSettings.upcartEditorSettings.rewardsMinAmount = val;
val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
if (val === '') {
val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0FNT1VOVH08L2I+IGF3YXkgZnJvbSBmcmVlIHNoaXBwaW5nITwvcD4=");
}
window.upcartSettings.upcartEditorSettings.rewardsEditor = val;
val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
if (val === '') {
val = b64DecodeUnicode("RnJlZSBzaGlwcGluZyB1bmxvY2tlZCE=");
}
window.upcartSettings.upcartEditorSettings.rewardsEditorAfterText = val;
val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
if (val === '') {
val = b64DecodeUnicode("PHA+WW914oCZcmUgPGI+e0NPVU5UfTwvYj4gcHJvZHVjdHMgYXdheSBmcm9tIGZyZWUgc2hpcHBpbmchPC9wPg==");
}
window.upcartSettings.upcartEditorSettings.rewardsEditorForItemCount = val;
val = b64DecodeUnicode("NQ==");
if (val === '') {
val = b64DecodeUnicode("NQ==");
}
window.upcartSettings.upcartEditorSettings.rewardsItemCount = val;
val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
if (val === '') {
val = b64DecodeUnicode("eyJ0aWVycyI6W10sImdlb0xvY2F0aW9uUHJpY2luZyI6W10sInJld2FyZHNBdXRvQ29udmVydEN1cnJlbmN5IjpmYWxzZSwicmV3YXJkc0dlb0xvY2F0aW9uRW5hYmxlZCI6ZmFsc2UsInVzZVByZURpc2NvdW50ZWRUb3RhbCI6ZmFsc2V9");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.rewardsTiers = val;
val = b64DecodeUnicode("W10=");
if (val === '') {
val = b64DecodeUnicode("W10=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.rewardsTierProducts = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.rewardsShowIconWithSingleTier = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.rewardsShowOnEmptyCart = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.recommendationsModule = val;
val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
if (val === '') {
val = b64DecodeUnicode("QWRkIHlvdXIgZmF2b3VyaXRlIGl0ZW1zIHRvIHlvdXIgY2FydC4=");
}
window.upcartSettings.upcartEditorSettings.recommendationsHeaderText = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.recommendationsEnableShopNowButton = val;
val = b64DecodeUnicode("U2hvcCBOb3c=");
if (val === '') {
val = b64DecodeUnicode("U2hvcCBOb3c=");
}
window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonText = val;
val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
if (val === '') {
val = b64DecodeUnicode("L2NvbGxlY3Rpb25z");
}
window.upcartSettings.upcartEditorSettings.recommendationsShopNowButtonURL = val;
val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
if (val === '') {
val = b64DecodeUnicode("W3siaWQiOiIiLCJyZWNvbW1lbmRhdGlvbiI6bnVsbCwidiI6MX1d");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.recommendationItems = val;
val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
if (val === '') {
val = b64DecodeUnicode("WW91IG1heSBhbHNvIGxpa2U=");
}
window.upcartSettings.upcartEditorSettings.recommendationsProductRecommendationsHeaderText = val;
val = b64DecodeUnicode("Mw==");
if (val === '') {
val = b64DecodeUnicode("Mw==");
}
window.upcartSettings.upcartEditorSettings.recommendationsMaxRecommendationsToShow = val;
val = b64DecodeUnicode("dmVydGljYWw=");
if (val === '') {
val = b64DecodeUnicode("dmVydGljYWw=");
}
window.upcartSettings.upcartEditorSettings.recommendationsDirection = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.upsellsModule = val;
val = b64DecodeUnicode("dmVydGljYWw=");
if (val === '') {
val = b64DecodeUnicode("aG9yaXpvbnRhbA==");
}
window.upcartSettings.upcartEditorSettings.upsellsDirection = val;
val = b64DecodeUnicode("PHA+PC9wPgo=");
if (val === '') {
val = b64DecodeUnicode("WW91J2xsIGxvdmUgdGhlc2U=");
}
window.upcartSettings.upcartEditorSettings.upsellsTitle = val;
val = b64DecodeUnicode("Mw==");
if (val === '') {
val = b64DecodeUnicode("MTA=");
}
window.upcartSettings.upcartEditorSettings.maximumUpsellsToShow = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.upsellsShouldLimit = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.upsellsTrigger = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.showUpsellItemsAlreadyInCart = val;
val = b64DecodeUnicode("W3siaWQiOiIzNDM4MyIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY1NzA2MjE1OTk4MzEiLCJzaG9ydElkIjoiNjU3MDYyMTU5OTgzMSIsInZhcmlhbnRzIjpbIjM5MzMzODE4MjY5NzgzIl0sImhhbmRsZSI6IjNtLXN0aWNrZXItZG91YmxlLXNpZGVkLXRhcGUtYWRoZXNpdmUtZm9yLWNlbGwtcGhvbmUtY29tcHV0ZXItcmVwYWlyIiwidGl0bGUiOiJOZXcgQmxhY2sgM00gU3RpY2tlciBEb3VibGUgU2lkZWQgVGFwZSBBZGhlc2l2ZSBGb3IgQ2VsbCBQaG9uZSAmIENvbXB1dGVyIFJlcGFpcnMiLCJpbWFnZSI6Imh0dHBzOi8vY2RuLnNob3BpZnkuY29tL3MvZmlsZXMvMS8xMTM4LzYxNzIvcHJvZHVjdHMvdGFwZTIuanBnP3Y9MTcyODkyMzA3MCJ9XX19LHsiaWQiOiI1NzA5NCIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzczMjM4ODQwMjc5OTEiLCJzaG9ydElkIjoiNzMyMzg4NDAyNzk5MSIsInZhcmlhbnRzIjpbIjQxMzYwNTgyOTM0NjE1Il0sImhhbmRsZSI6IjExNS1pbi0xLW1hZ25ldGljLXByZWNpc2lvbi1zY3Jld2RyaXZlci1zZXQtcGMtcGhvbmUtZWxlY3Ryb25pY3MtcmVwYWlyLXRvb2wta2l0IiwidGl0bGUiOiJOZXcgTGFwdG9wIFJlcGFpciBUb29sIGtpdCAxMTUgaW4gMSBNYWduZXRpYyBQcmVjaXNpb24gU2NyZXdkcml2ZXIgU2V0IiwiaW1hZ2UiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL3MtbDEwMDBfNTE2ZTAyNjQtZGNmMy00NTdmLWI1MmItYjgwNzZmMTQwMGIyLndlYnA/dj0xNzMxNDIwNTQ4In1dfX0seyJpZCI6IiIsInYiOjIsInRyaWdnZXIiOnsib24iOiJhbGwifSwidXBzZWxsIjp7InR5cGUiOiJQcm9kdWN0IiwicHJvZHVjdHMiOlt7ImlkIjoiZ2lkOi8vc2hvcGlmeS9Qcm9kdWN0LzY3NzgxMTA4Njk1OTEiLCJzaG9ydElkIjoiNjc3ODExMDg2OTU5MSIsInZhcmlhbnRzIjpbIjM5ODI5OTUxODQwMzQzIl0sImhhbmRsZSI6Im50MDN1MTg1bi0wNjRnLTMwd2gtbGlxdWlkYXRpb24tc2FsZS1uZXctbmV0YWMtNjRnYi11c2ItZmxhc2gtZHJpdmUtdXNiLTMtMC11MTg1IiwidGl0bGUiOiJMSVFVSURBVElPTiBTQUxFIE5ldyBOZXRhYyA2NEdCIFVTQiBGbGFzaCBEcml2ZSBVU0IgMy4wIFUxODUgTlQwM1UxODVOLTA2NEctMzBXSCIsImltYWdlIjoiaHR0cHM6Ly9jZG4uc2hvcGlmeS5jb20vcy9maWxlcy8xLzExMzgvNjE3Mi9maWxlcy9udDAzdTE4NW4tMDY0Zy0zMHdoLmpwZz92PTE3Mjc5NTc0NTAifV19fV0=");
if (val === '') {
val = b64DecodeUnicode("W3siX2lkIjoiIiwidHJpZ2dlciI6bnVsbCwidXBzZWxsIjpudWxsfV0=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.upsellsItems = val;
val = b64DecodeUnicode("Ym90dG9t");
if (val === '') {
val = b64DecodeUnicode("Ym90dG9t");
}
window.upcartSettings.upcartEditorSettings.upsellsModulePosition = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.recommendedUpsells = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.smartVariantMatching = val;
val = b64DecodeUnicode("cmVsYXRlZA==");
if (val === '') {
val = b64DecodeUnicode("cmVsYXRlZA==");
}
window.upcartSettings.upcartEditorSettings.upsellRecommendationIntent = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.addonsModule = val;
val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjp0cnVlLCJwcm9kdWN0SGFuZGxlIjoic2hpcHBpbmctcHJvdGVjdGlvbiIsImRlZmF1bHRCZWhhdmlvciI6dHJ1ZSwidGllcnMiOlt7Im1heENhcnRUb3RhbCI6OTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjIuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk0NDc5MSJ9LHsibWF4Q2FydFRvdGFsIjoxOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjMuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTU5OTk3NzU1OSJ9LHsibWF4Q2FydFRvdGFsIjoyOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjQuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDAxMDMyNyJ9LHsibWF4Q2FydFRvdGFsIjozOTkuOTksInRlbXBvcmFyeURhdGFGb3JBZG1pbiI6eyJ2YXJpYW50UHJpY2UiOjUuOTl9LCJ2YXJpYW50SWQiOiI0MTM2NTYwMDA0MzA5NSJ9LHsibWF4Q2FydFRvdGFsIjpudWxsLCJ0ZW1wb3JhcnlEYXRhRm9yQWRtaW4iOnsidmFyaWFudFByaWNlIjo2Ljk5fSwidmFyaWFudElkIjoiNDEzNjU2MDAwNzU4NjMifV0sInVzZVByZURpc2NvdW50ZWRUb3RhbCI6dHJ1ZX0sInByb2R1Y3RBZGRvbiI6eyJhY3RpdmUiOmZhbHNlLCJwcm9kdWN0SGFuZGxlIjpudWxsLCJwcm9kdWN0IjpudWxsLCJkZWZhdWx0QmVoYXZpb3IiOmZhbHNlfX0=");
if (val === '') {
val = b64DecodeUnicode("eyJzaGlwcGluZ1Byb3RlY3Rpb24iOnsiYWN0aXZlIjpmYWxzZSwicHJvZHVjdEhhbmRsZSI6bnVsbCwiZGVmYXVsdEJlaGF2aW9yIjpmYWxzZSwidGllcnMiOltdLCJ1c2VQcmVEaXNjb3VudGVkVG90YWwiOmZhbHNlfSwicHJvZHVjdEFkZG9uIjp7ImFjdGl2ZSI6ZmFsc2UsInByb2R1Y3RIYW5kbGUiOm51bGwsInByb2R1Y3QiOm51bGwsImRlZmF1bHRCZWhhdmlvciI6ZmFsc2V9fQ==");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.addonsField = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.addonsShouldBeCounted = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.notesModule = val;
val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zIC0gTGFwdG9wIG1vZGVsIE51bWJlcjwvcD4K");
if (val === '') {
val = b64DecodeUnicode("PHA+QWRkIHNwZWNpYWwgaW5zdHJ1Y3Rpb25zPC9wPg==");
}
window.upcartSettings.upcartEditorSettings.notesTitle = val;
val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
if (val === '') {
val = b64DecodeUnicode("U3BlY2lhbCBpbnN0cnVjdGlvbnMgZm9yIHlvdXIgb3JkZXI=");
}
window.upcartSettings.upcartEditorSettings.notesPlaceholder = val;
val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
if (val === '') {
val = b64DecodeUnicode("Ym90dG9tT2ZDYXJ0");
}
window.upcartSettings.upcartEditorSettings.notesPlacement = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.trustBadgesModule = val;
val = b64DecodeUnicode("eyJ1cmwiOiJodHRwczovL2Nkbi5zaG9waWZ5LmNvbS9zL2ZpbGVzLzEvMTEzOC82MTcyL2ZpbGVzL1VwY2FydF9UcnVzdF9CYWRnZV8xNzMyMzA5MzM1OTQyLmpwZz92PTE3MzIzMDkzMzgiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
if (val === '') {
val = b64DecodeUnicode("eyJ1cmwiOiIiLCJwb3NpdGlvbiI6ImJvdHRvbSJ9");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.trustBadges = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.discountCodeModule = val;
val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
if (val === '') {
val = b64DecodeUnicode("RGlzY291bnQgY29kZQ==");
}
window.upcartSettings.upcartEditorSettings.discountCodePlaceholder = val;
val = b64DecodeUnicode("QXBwbHk=");
if (val === '') {
val = b64DecodeUnicode("QXBwbHk=");
}
window.upcartSettings.upcartEditorSettings.discountCodeButtonText = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.subscriptionUpgradesModule = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.subscriptionUpgradesPreventDowngrades = val;
val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
if (val === '') {
val = b64DecodeUnicode("VXBncmFkZSB0byB7e3NlbGxpbmdfcGxhbl9ncm91cF9uYW1lfX0=");
}
window.upcartSettings.upcartEditorSettings.subscriptionUpgradesButtonText = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsTextOverride = val;
val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
if (val === '') {
val = b64DecodeUnicode("e3tzZWxsaW5nX3BsYW5fZ3JvdXBfbmFtZX19IC8ge3tzZWxsaW5nX3BsYW5fbmFtZX19");
}
window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOptionsText = val;
val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
if (val === '') {
val = b64DecodeUnicode("T25lLXRpbWUgcHVyY2hhc2U=");
}
window.upcartSettings.upcartEditorSettings.subscriptionUpgradesOneTimePurchaseText = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.expressPayModule = val;
val = b64DecodeUnicode("W10=");
if (val === '') {
val = b64DecodeUnicode("W10=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.expressPayEnabledGateways = val;
val = b64DecodeUnicode("MQ==");
if (val === '') {
val = b64DecodeUnicode("MQ==");
}
window.upcartSettings.upcartEditorSettings.expressPayVersion = val;
val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
if (val === '') {
val = b64DecodeUnicode("eyJmaWVsZHMiOnsic2hvcGlmeUFjY2VsZXJhdGVkQ2hlY2tvdXRCdXR0b25CbG9ja1NpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dEJ1dHRvbklubGluZVNpemUiOjQyLCJzaG9waWZ5QWNjZWxlcmF0ZWRDaGVja291dElubGluZUFsaWdubWVudCI6ImNlbnRlciIsInNob3BpZnlBY2NlbGVyYXRlZENoZWNrb3V0Um93R2FwIjo4fX0=");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.expressPayAcceleratedCheckoutStyles = val;
val = b64DecodeUnicode("dHJ1ZQ==");
if (val === '') {
val = b64DecodeUnicode("dHJ1ZQ==");
}
val = JSON.parse(val);
window.upcartSettings.upcartEditorSettings.expressPayHideBuyerConsent = val;
val = b64DecodeUnicode("ZmFsc2U=");
if (val === '') {
val = b64DecodeUnicode("ZmFsc2U=");
}
val = JSON.parse(val);
window.upcartSettings.stickyCartButtonEditorSettings.stickyCartButtonIsEnabled = val;
val = b64DecodeUnicode("IzQzYmUwYQ==");
if (val === '') {
val = b64DecodeUnicode("IzAwMDAwMA==");
}
window.upcartSettings.stickyCartButtonEditorSettings.backgroundColor = val;
val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
if (val === '') {
val = b64DecodeUnicode("YWxsRGV2aWNlcw==");
}
window.upcartSettings.stickyCartButtonEditorSettings.deviceSettings = val;
val = b64DecodeUnicode("I2ZmZmZmZg==");
if (val === '') {
val = b64DecodeUnicode("I2ZmZmZmZg==");
}
window.upcartSettings.stickyCartButtonEditorSettings.iconColor = val;
val = b64DecodeUnicode("c3RhbmRhcmRDYXJ0");
if (val === '') {
val = b64DecodeUnicode("c3F1YXJlQmFn");
}
window.upcartSettings.stickyCartButtonEditorSettings.iconStyle = val;
val = b64DecodeUnicode("I2U0MjYyNg==");
if (val === '') {
val = b64DecodeUnicode("I2U0MjYyNg==");
}
window.upcartSettings.stickyCartButtonEditorSettings.quantityBackgroundColor = val;
val = b64DecodeUnicode("I2ZmZmZmZg==");
if (val === '') {
val = b64DecodeUnicode("I2ZmZmZmZg==");
}
window.upcartSettings.stickyCartButtonEditorSettings.quantityTextColor = val;
val = b64DecodeUnicode("Y2VudGVyUmlnaHQ=");
if (val === '') {
val = b64DecodeUnicode("Ym90dG9tUmlnaHQ=");
}
window.upcartSettings.stickyCartButtonEditorSettings.stickyCartPosition = val;
})();
</script>
<div id="upcart-additional-checkout-buttons" style="position: absolute !important; margin-left: -9999px !important; display: block !important;" class="additional-checkout-buttons">
<div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
<div class="upcart-additional-checkout-buttons-svgs">
</div>
</div>
<script>
window.upcartPreloadedCart = {"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};
window.upcartMoneyFormat = "${{amount}}";
window.upcartStorefrontPublicAccessToken = '53e72a50badb7e504187b4c7431817bf' || undefined;
window.upcartClientLocalizationCountry = {
isoCode: 'CA',
currency: 'CurrencyDrop',
name: 'Canada'
};
window.upcartMyShopifyDomain = 'laptoppartsatp.myshopify.com';
</script>
<script>
window.upcartPreloadedCart.items = window.upcartPreloadedCart.items.map((line) => {
return line;
});
</script>
<div id="upCart"></div>
<div id="upCartStickyButton"></div>
<style id="upCart-customCSS">
*{}
</style>
</div><div id="shopify-block-AN2k5QkMvdUJ0UDFZd__8171265131012698934" class="shopify-block shopify-app-block">
<input class="OrichiAppEmbed" type="hidden">
<input
class="OrichiCustomerTags"
type="hidden"
value="" />
<input
class="OrichiCustomerEmail"
type="hidden"
value="" />
<script async src="https://cdn.shopify.com/extensions/4acc9011-492c-484b-bc2f-04bf497830e8/oc-quantity-breaks-limit-296/assets/front.min.js"></script>
<script>
var orichiDiscount = {
productJSPath: 'https://cdn.shopify.com/extensions/4acc9011-492c-484b-bc2f-04bf497830e8/oc-quantity-breaks-limit-296/assets/productpage.min.js',
cartJSPath: 'https://cdn.shopify.com/extensions/4acc9011-492c-484b-bc2f-04bf497830e8/oc-quantity-breaks-limit-296/assets/cartajax.min.js'
}
</script>
<script>
window.orichiDiscountSettingData = {"setting":{"Id":18599,"ShopId":18333,"Active":true,"ShowDescription":true,"ShowDiscountedPrice":false,"ShowDiscountProductPage":true,"LayoutInProductPage":4,"ShowColumnTotal":true,"TextDiscount":"Discount","TextDiscountPrice":"Discount Price","TextQuantityBreaks":"🔥 Buy more, save more! 🔥","TextTotalAmount":"Total Amount","WidthLayout":0.0,"TextQuantity":"Quantity","CustomCssProductPage":".orichiCampaignCustom table{border-collapse: collapse !important;}\n.orichiCampaignCustom td{padding: .3rem .5rem !important;}\n.orichi-Rule table{width: 50% !important;}","TextPlus":"+","CustomJsProductPage":null,"TextBuy":"Buy","UseAjaxCart":true,"ShowNotiOnCart":true,"UseDiscountCodeOnCart":false,"TextNotiOnCart":"Buy {Quantity} + discount {PercentOrPrice}","DisCountCodePrefix":null,"UseUpdateOnCartPage":false,"CustomCssCart":null,"CustomJsCart":null,"TextEach":"/each","TableFontSizeHeading":"15","TablePadding":"10","TableBorderSize":"1","PlanNumber":1,"StartFreeTrial":1,"TextPrice":"Price","HideBanner":null,"IsEnableAppEmbed":true,"IsClosePopupEnableAppEmbed":false,"StartFreeTrialAdvanced":1,"LimitOrderValueStatus":false,"MinTotalOrderValue":0,"MaxTotalOrderValue":0,"LimitOrderQuantityStatus":false,"MinTotalQuantityValue":0,"MaxTotalQuantityValue":0,"PopupLimitOrderIsNotValid":"Order is not valid","LimitOrderTextButtonOk":"OK","LimitOrderBackgroundColorButtonOk":"#000000","LimitOrderTextColorButtonOk":"#FFFFFF","TextMaxSubTotalValue":"You can only choose maximum of {maximum} for the subtotal value","TextMinSubTotalValue":"You have to choose minimum of {minimum} for the subtotal value","TextMaxProductInTotal":"You can only choose maximum of {maximum} products in total","TextMinProductInTotal":"You have to choose minimum of {minimum} products in total","PopupLitmitOrderTextColor":"#000000","CheckoutLimitOrderIsNotValid":"Order is not valid","LimitOrderBackgroundColorButtonCheckout":"#000000","LimitOrderTextColorButtonCheckout":"#FFFFFF","Currency":"CAD","IsClosedStore":false,"TextMinCollection":"You have to choose minimum of {minimum} for the {collection_name}","TextMaxCollection":"You can only choose maximum of {maximum} for the {collection_name}","TextMaxCollectionTotalPurchased":"You have already bought {total_purchased} of {collection_name} before. You can only buy maximum of {maximum} for the {collection_name}.","ShowLimitTableOnCartPage":false,"ShowDiscountTag":false,"TypeOfTag":0,"TagPosition":0,"TagMessage":"{PercentOrPrice} off","TagSize":"50","TagFontSize":"11","TagBorderSize":"1","TagCornerRadius":"4","TagTextColor":"#000000","TagBackgroundColor":"#F7CA00","TagBorderColor":"#000000","UpSellOnCartColor":"#FF0000","UpSellOnCartBackground":"#FFFFFF","PlanType":1,"ThemeCustomDiscountId":0,"ClassThemeTableDiscount":null,"LastVoteIsClosedDate":"2024-04-11T03:11:38.027","TextPerTotal":"/total","TextLimitPurchaseSeparately":"You can not buy different products from collection {collection_name} at the same time","ShopName":"Jacques Trottier Sr.","ApplyShopifyDiscountCode":0,"LimitCollectionTextSpecificQuantity":"You have to choose {specific_quantity} products of {collection_name}","LimitTypeOrder":0,"SpecificQuantityAllowToChooseOrder":null,"TextSpecificQuantity":"You have to choose {specific_quantity} products in total","IsUninstalled":null,"PricePlan":null,"TextDiscountRange":"From {min_price} to {original_price}","TextColorDiscountRange":null,"StartFreeTrialStarter":0,"UseDiscountCodeOnCheckoutPage":null},"setting2":{"Id":18599,"ShopId":18333,"CheckLimitProPage":true,"CheckLimitCartPage":true,"TextPurchaseLimit":"Purchase limit","TextMinimum":"Minimum","TextMaximum":"Maximum","TextQuantity":"Quantity","TextMinimumLimitText":"You have to choose minimum of {minimum} products","TextMaximumLimitText":"You can only choose maximum of {maximum} products","TextQuantityMaximumLimitText":"You already have {quantity} of this product in your cart. You can only choose maximum of {maximum} products in total. ","UseSettingsForTheme":null,"CartWrapper":null,"CheckoutButton":null,"CartSubtotal":null,"AddToCartFrom":null,"AjaxCart":null,"AjaxCartSubtotal":null,"FormAddToCartSelector":null,"TextOop":"Oops!","TextMinMaxRequired":"{min} or {max} {product_title}","TextPleaseFix":"Please fix these cart errors before checking out","TextDismiss":"Dismiss","TextUpdateCart":"Update Cart","TextBundling":"Bundling","AutoUpSale":false,"TextUpSale":"Buy {quantitymore} more and get {priceorpercent} off","CustomCssAlert":null,"CustomJsAlert":null,"FontSizeDiscountTitle":"16","TextColorDiscountTitle":"#000000","TextColorHeading":"#000000","BackgroundColorHeading":"#F7CA00","CardTheme":0,"FontSizeItemInTable":"14","TextColorItemInTable":"#000000","BackgroundColorItemInTable":"#FFFFFF","TextGet":"get","TextOff":"off","FontSizeCard":"14","TextColorCard":"#000000","BackgroundColorCard":"#F7CA00","TextMinimumProductTitle":"You have to choose minimum of {minimum} {product_title}","TextMaximumProductTitle":"You can only choose maximum of {maximum} {product_title}","TextMinimumCartQuantity":"This discount is applied to the total quantity of products in your cart","TextMinimumSameProductQuantity":"This discount is applied to the total quantity of this product in your cart","TextMinimumSameProductVariantQuantity":"This discount is applied to the total quantity of the same variant of this product in your cart","TextApply":"Apply","TextBaseOn":"Base on","TextDiscountCode":"Discount code","TextDiscountCodeNotAvailable":"Discount code isn’t available","FontSizeTitlePurchaseLimit":"16","TextColorTitlePurchaseLimit":"#000000","FontSizeLimitTable":"14","TextColorLimitTable":"#000000","BackgroundColorLimitTable":"#F7CA00","ShowDiscountedPriceEachCard":false,"TextDiscountedPriceEachCard":"Total: {total_amount} ({price_per_item}/each)","LimitUsageTextMaximumProductsInTotal":"You have already bought {total_purchased} of this product. You can only buy maximum of {maximum} products in total.","LimitUsageTextMaximumProductTitle":"You have already bought {total_purchased} {product_title}. You can only buy maximum of {maximum} {product_title}.","ShowLimitTableOnCartPage":true,"LimitProductTextMultipleProducts":"You have to choose {multiple} products","LimitProductTextMultipleProductTitle":"You have to choose {multiple} {product_title}","DiscountCodeApply":null,"LimitProductTextSpecificQuantity":"You have to choose {specific_quantity} products","LimitProductTextAlertSpecificQuantity":"You have to choose {specific_quantity} {product_title}","CodeLanguage":null},"parameters":[{"Id":1201,"ShopId":18333,"Type":"Pro-DT-M-Selector","Value":".short-description","CreatedDate":"2023-06-15T15:28:36.26","ModifiedDate":"2023-06-15T18:05:20.44"},{"Id":3255,"ShopId":18333,"Type":"Pro-SetVar-FormCart","Value":".product--outer","CreatedDate":"2024-04-11T11:20:43.043","ModifiedDate":"2024-04-11T11:20:43.043"}],"discountTag":{"Id":5429,"ShopId":18333,"ShowDiscountTag":false,"TypeOfTag":1,"TagPosition":0,"TagMessage":"{PercentOrPrice} off","TagSize":"50","TagFontSize":"11","TagBorderSize":"1","TagCornerRadius":"4","TagTextColor":"#000000","TagBackgroundColor":"#F7CA00","TagBorderColor":"#000000","CreatedDate":"2023-06-13T15:10:23.367","LastModifiedDate":"2024-04-12T02:43:29.347"}};
</script>
</div></body>
</html>