Menu
Your Cart

Laptop Keyboard for Lenovo 320-15ISK

Laptop Keyboard for Lenovo 320-15ISK
-18 %
Laptop Keyboard for Lenovo 320-15ISK
  • Price: TK 1,100/-
  • special price: TK 900/-
  • Stock: In Stock
  • Model: 320-15ISK
TK 900/-
TK 1,100/-
Ex Tax: TK 900/-

Key Features

    • Keyboard For: Lenovo Laptop
    • Model: 320-15ISK
    • Layout: US
    • Compatible Model:Lenovo IdeaPad N100 G430 G530 Y-510 Y410 G630 3000 G450
    • Warranty 3 Month
Specification
General Feature
BrandLenovo
Model 320-15ISK
Physical Attributes
ColorBlack
Backlit OptionOptional
LayoutUS
Warranty Information
Warranty3 Month
Description

Laptop Keyboard for Lenovo 320-15ISK at Dear IT Solution

At Dear IT Solution, we understand the importance of a fully functional keyboard for your Lenovo 320-15ISK laptop. Whether you're facing issues with unresponsive keys, wear and tear, or accidental damage, we offer top-quality replacement keyboards designed to restore your laptop to its optimal performance. Our keyboards are built to the exact specifications of the original, ensuring a seamless fit and reliable functionality.

Product Features

Perfect Fit and Compatibility

Our replacement keyboard is specifically designed for the Lenovo 320-15ISK model, ensuring perfect compatibility and easy installation. This keyboard features the standard US layout with English language keys, making it an ideal choice for users who want a hassle-free replacement that feels just like the original. The keyboard is compatible with the following Lenovo model:

    Lenovo 320-15ISK

With this precise compatibility, you can rest assured that the keyboard will fit perfectly and function flawlessly with your laptop.

Durable and High-Quality Construction


Quality is our top priority at Dear IT Solution. The replacement keyboard for Lenovo 320-15ISK is manufactured using durable materials that can withstand daily use. The keys are designed for longevity and provide a smooth, responsive typing experience. Whether you use your laptop for work, study, or leisure, this keyboard will meet your needs and maintain its performance over time.

Installation and Service

Professional Installation Service


Replacing a laptop keyboard can be a delicate task, but with our professional installation service, you won’t have to worry about it. Our experienced technicians at Dear IT Solution can install your new keyboard quickly and efficiently, ensuring that everything works perfectly from the moment you start using it. This service includes a small fitting charge, providing you with convenience and peace of mind.

Warranty and Support


We stand by the quality of our products, which is why we offer a 3-month (90-day) warranty on our Lenovo 320-15ISK keyboard. This warranty covers any manufacturer defects, giving you the confidence that your purchase is protected. Should you encounter any issues, our customer support team is ready to assist you. Please note that physical damage is not covered under the warranty.

Conclusion


For Lenovo 320-15ISK users in need of a reliable keyboard replacement, Dear IT Solution is your go-to provider. Our high-quality, durable keyboards are designed to match the original specifications of your laptop, offering a seamless fit and superior performance. With our expert installation service and comprehensive warranty, you can trust us to deliver the best solution for your Lenovo laptop. Visit Dear IT Solution today to get the perfect replacement keyboard for your Lenovo 320-15ISK.

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};