Menu
Your Cart

HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit

HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit
HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit
HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit
HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit
HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit
  • Price: TK 2,850/-
  • Stock: In Stock
  • Model: Spectre X360 15-BL000 Series
  • MPN: L14347-001
TK 2,850/-
Ex Tax: TK 2,850/-

Key Features

    • Brand: HP
    • Model: Spectre X360 15-BL000 Series
    • Keyboard Type: Laptop Keyboard with Backlit
    • Layout: US
    • Compatible Models: HP Spectre X360 15-BL000 Series, 15-BL010CA, 15-BL018CA, 15-BL012DX, 15-BL112DX, 15-BL152NR, 15-BL075NR, 15-BL020CA
    • Warranty: 6 Months
Specification
General Feature
BrandHP
ModelSpectre X360 15-BL000 Series
Physical Attributes
ColorBlack / Dark Ash Silver (Depending on Model)
Backlit OptionYes, Backlit Keyboard for Low-Light Typing
LayoutUS Standard Layout
Compatible With HP Spectre X360 15-BL000 Series, 15-BL010CA, 15-BL018CA, 15-BL012DX, 15-BL112DX, 15-BL152NR, 15-BL075NR, 15-BL020CA.
Warranty Information
Warranty6 Months
Description

HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit

The HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit is a high-quality replacement keyboard designed to perfectly fit your HP Spectre X360 15-inch convertible laptop. If your current keyboard is not functioning correctly or has worn-out keys, this backlit replacement keyboard is the perfect solution.

With a US standard layout and backlit functionality, this keyboard ensures comfortable typing, even in low-light environments. Built with premium materials, it offers durability, smooth keystrokes, and long-lasting performance, making it the ideal choice for students, professionals, and frequent travelers.


Compatible Models

  • HP Spectre X360 15-BL000 Series

  • HP Spectre X360 15-BL010CA

  • HP Spectre X360 15-BL018CA

  • HP Spectre X360 15-BL012DX

  • HP Spectre X360 15-BL112DX

  • HP Spectre X360 15-BL152NR

  • HP Spectre X360 15-BL075NR

  • HP Spectre X360 15-BL020CA


Part Numbers (Commonly Associated)

  • L14347-001

  • 924509-001

  • 924501-001


Maintenance Tips

  1. Use proper tools when replacing the keyboard to prevent ribbon damage.

  2. Avoid liquid spills to maintain backlight functionality.

  3. Clean the keyboard regularly with compressed air.

  4. Use a keyboard cover for extra protection.


Buying Information – Dear IT Solution

Buy the HP Spectre X360 15-BL000 Series Laptop Keyboard with Backlit at the best price in Bangladesh from Dear IT Solution. We ensure best quality products in Bangladesh, fast delivery, and professional after-sales support for all laptop accessories.

Order now at Dear IT Solution for the perfect replacement keyboard for your HP Spectre X360 laptop.

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};