<!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'] = {"pay-button":["modules/client.pay-button_CUnJ4mxT.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"avatar":["modules/client.avatar_BTnouDA3.en.esm.js"],"init-shop-email-lookup-coordinator":["modules/client.init-shop-email-lookup-coordinator_Cvq-awuK.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"init-customer-accounts-sign-up":["modules/client.init-customer-accounts-sign-up_q0Lq9zwa.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"],"init-shop-for-new-customer-accounts":["modules/client.init-shop-for-new-customer-accounts_Dk4hKwLj.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"],"init-customer-accounts":["modules/client.init-customer-accounts_C6p9QzrF.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"],"shop-pay-payment-request":["modules/client.shop-pay-payment-request_Ba1p9ane.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js","modules/chunk.shop-pay_C8q_1fm1.esm.js"],"discount-app":["modules/client.discount-app_BIPXfj_1.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"login-button":["modules/client.login-button_BXY0vbFt.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js"],"payment-terms":["modules/client.payment-terms_CXNNgMn-.en.esm.js","modules/chunk.common_CTPs4D8t.esm.js","modules/client.login-button_BXY0vbFt.en.esm.js"]};
</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":"6236cd99-7a2f-4e88-bd5f-6d7402186b3f-1734181071","pageurl":"laptopparts.ca\/","u":"27031221ffda","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)}function i(t,e,n=!1){try{const o=window.sessionStorage,c=JSON.parse(o.getItem(e)),{data:r}=c.action?c:{data:c};for(const[e,n]of Object.entries(r))t.elements[e]&&(t.elements[e].value=n);n&&o.removeItem(e)}catch{}}const u='password',m='form_key',f=['recaptcha-v3-token','g-recaptcha-response','h-captcha-response',u],d=()=>{try{return window.sessionStorage}catch{return}},p=t=>t.elements[m],l='form_type',h='cptcha';function _(t){t.dataset[h]=!0}const y=window,E=y.document,v='Shopify',g='ce_forms',T='captcha';let S=!1;((t,e)=>{const n=(w='f06e6c50-85a8-45c8-87d0-21a2b65856fe','https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.0.iife.js',A={infoText:'Protected by hCaptcha',privacyText:'Privacy',termsText:'Terms'},(t,e,n)=>{const o=y[v][g],c=o.bindForm;if(c)return c(t,w,e,A).then(n);o.q.push([[t,w,e,A],n]),S||(E.body.append(Object.assign(E.createElement('script'),{id:'captcha-provider',async:!0,src:'https://cdn.shopify.com/shopifycloud/storefront-forms-hcaptcha/ce_storefront_forms_captcha_hcaptcha.v1.5.0.iife.js'})),S=!0)});var w,A;y[v]=y[v]||{},y[v][g]=y[v][g]||{},y[v][g].q=[],y[v][T]=y[v][T]||{},y[v][T].protect=function(t,e){n(t,void 0,e),_(t)},Object.freeze(y[v][T]),function(t,e,n,y,E,v){const[g,T,S,w]=function(t,e,n){const i=e?o:[],u=t?c:[],m=[...i,...u],f=r(m),d=r(i),p=n&&r(m.filter((([t,e])=>n.includes(e))));return[a(f),a(d),a(p),s()]}(y,E,v),A=t=>{const e=t.target;return e instanceof HTMLFormElement?e:e&&e.form},b=t=>g().includes(t);t.addEventListener('submit',(t=>{const e=A(t);if(!e)return;const n=b(e)&&!e.dataset.hcaptchaBound&&!e.dataset.recaptchaBound,o=p(e),c=w().includes(e)&&(!o||!o.value);(n||c)&&t.preventDefault(),c&&!n&&(function(t){try{if(!d())return;!function(t){const e=d();if(!e)return;const n=p(t);if(!n)return;const o=n.value;o&&e.removeItem(o)}(t);const e=Array.from(Array(32),(()=>Math.random().toString(36)[2])).join('');!function(t,e){p(t)||t.append(Object.assign(document.createElement('input'),{type:'hidden',name:m})),t.elements[m].value=e}(t,e),function(t,e){const n=d();if(!n)return;const o=[...t.querySelectorAll(`input[type='${u}']`)].map((({name:t})=>t)),c=[...f,...o],r={};for(const[a,s]of new FormData(t).entries())c.includes(a)||(r[a]=s);n.setItem(e,JSON.stringify({action:t.action,data:r}))}(t,e)}catch(e){console.error('failed to persist form',e)}}(e),e.submit())}));const I=(t,e)=>{t&&!t.dataset[h]&&(n(t,e.some((e=>e===t))),_(t))};for(const o of['focusin','change'])t.addEventListener(o,(t=>{const e=A(t);b(e)&&I(e,T())}));const O=e.get('form_key'),R=e.get(l),L=O&&R;t.addEventListener('DOMContentLoaded',(()=>{const t=T();if(L)for(const e of t)e.elements[l].value===R&&i(e,O);[...new Set([...S(),...g().filter((t=>'true'===t.dataset.shopifyCaptcha))])].forEach((e=>I(e,t)))}))}(E,new URLSearchParams(y.location.search),n,!1,!0,['guest_login'])})()}();</script>
<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
async="async"
src="https://livesearch.okasconcepts.com/js/livesearch.init.min.js?v=2&shop=laptoppartsatp.myshopify.com"
></script>
<script src="https://cdn.shopify.com/extensions/65c5a9b9-306d-47b4-8dd4-d66c9686644f/upcart-cart-drawer-75/assets/upcart-bundle.js" type="text/javascript" defer="defer"></script>
<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","8b5bb66465490549d0075e408d4417a651aab7cf","eacc1c7dw9d7f2563p4733c06fm5ec1f798",);</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.99dbbdfeb1f3090da185887d7e078889edcb783c.min.js"});
};
scriptFallback.async = true;
scriptFallback.src = '//laptopparts.ca/cdn/s/trekkie.storefront.99dbbdfeb1f3090da185887d7e078889edcb783c.min.js';
first.parentNode.insertBefore(scriptFallback, first);
};
script.async = true;
script.src = '//laptopparts.ca/cdn/s/trekkie.storefront.99dbbdfeb1f3090da185887d7e078889edcb783c.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-61fa9e0a912c675e178777d2b27f6cbd482f8912a6b0aa31fa3515985a8cd626.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 Adapter">AC Adapter</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:Battery">Battery</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:DC Jacks">DC Jacks</option>
<option value="product_type:DC Power Cable">DC Power Cable</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>
$129.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$129.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>
$129.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$129.99</span>
-
<span class="money price__current--max" data-price-max>$129.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$129.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>
$129.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$129.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>
$129.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$129.99</span>
-
<span class="money price__current--max" data-price-max>$129.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$129.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>
$79.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$79.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>
$79.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$79.99</span>
-
<span class="money price__current--max" data-price-max>$79.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$79.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>
$79.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$79.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>
$79.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$79.99</span>
-
<span class="money price__current--max" data-price-max>$79.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$79.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>
$139.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>
$139.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$139.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>
$139.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>
$123.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$123.99</span>
-
<span class="money price__current--max" data-price-max>$123.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$123.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>
$139.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>
$139.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$139.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>
$139.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>
$123.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$123.99</span>
-
<span class="money price__current--max" data-price-max>$123.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$123.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>
$129.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$129.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>
$129.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$129.99</span>
-
<span class="money price__current--max" data-price-max>$129.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$129.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>
$129.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$129.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>
$129.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$129.99</span>
-
<span class="money price__current--max" data-price-max>$129.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$129.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>
$33.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$33.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>
$33.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$33.99</span>
-
<span class="money price__current--max" data-price-max>$33.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$33.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>
$33.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$33.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>
$33.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$33.99</span>
-
<span class="money price__current--max" data-price-max>$33.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$33.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>
$53.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$53.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>
$53.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$53.99</span>
-
<span class="money price__current--max" data-price-max>$53.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$53.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>
$53.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$53.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>
$53.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$53.99</span>
-
<span class="money price__current--max" data-price-max>$53.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$53.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>
$233.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$233.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>
$233.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$233.99</span>
-
<span class="money price__current--max" data-price-max>$233.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$233.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>
$233.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$233.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>
$233.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$233.99</span>
-
<span class="money price__current--max" data-price-max>$233.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$233.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>
$51.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$51.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>
$51.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$51.99</span>
-
<span class="money price__current--max" data-price-max>$51.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$51.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">Incoming ETA 7 to 10 Days</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>
$51.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$51.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>
$51.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$51.99</span>
-
<span class="money price__current--max" data-price-max>$51.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$51.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>
$35.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$35.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>
$35.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$35.99</span>
-
<span class="money price__current--max" data-price-max>$35.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$35.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>
$35.99
</span>
-
<span class="visually-hidden">Original price</span>
<span class="money price__compare-at--max" data-price-compare-max>
$35.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>
$35.99
</span>
</div>
<div class="price__current--hidden" data-current-price-range-hidden>
<span class="money price__current--min" data-price-min>$35.99</span>
-
<span class="money price__current--max" data-price-max>$35.99</span>
</div>
<div class="price__current--hidden" data-current-price-hidden>
<span class="visually-hidden">Current price</span>
<span class="money" data-price>
$35.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>