Menu
Your Cart

ASUS N551J / N551JK / N551JM / GL551 Laptop AC DC Power Jack

ASUS N551J / N551JK / N551JM / GL551 Laptop AC DC Power Jack
ASUS N551J / N551JK / N551JM / GL551 Laptop AC DC Power Jack
  • Price: TK 400/-
  • Stock: In Stock
  • Model: ASUS N551J / N551JK Laptop DC Power Jack
TK 400/-
Ex Tax: TK 400/-

Key Features

  • Model: ASUS N551J / N551JK / N551JM / GL551 AC DC Power Jack
  • Type: Laptop AC DC Power Input Connector
  • Build Quality: OEM-Grade Metal Shell & Copper Terminals
  • Power Handling: Stable Voltage & Safe Charging
  • Durability: Strong Solder Legs for Long-Term Use
  • Use Case: Fixes No-Charge, Loose Jack & Power Cut Issues

সকল ধরনের ASUS Laptop Power Jack Available

Description

ASUS N551J / N551JK / N551JM / GL551 Laptop AC DC Power Jack – OEM Replacement | Best Price in BD

Overview & Product Quality

The ASUS N551J, N551JK, N551JM, and GL551 Laptop AC DC Power Jack is a high-quality OEM replacement component designed to restore stable charging and reliable power input for compatible ASUS laptops. If your laptop is facing issues such as loose charging, adapter not detected, intermittent power connection, no charging, or sudden power cut while plugged in, replacing the faulty DC jack ensures safe and consistent power delivery.

Built with reinforced metal housing, durable copper terminals, and heat-resistant insulation, this power jack provides a strong and secure connection between the AC adapter and the motherboard. Its precise pin structure and solid solder legs help prevent common issues like wobbling connectors, power fluctuation, and overheating near the charging port. The OEM-grade construction ensures long-term durability even under frequent plug and unplug use.

Engineered to match ASUS original specifications, this AC DC power jack maintains proper voltage regulation and charging efficiency, helping protect the battery and internal components from electrical instability and damage caused by a worn or damaged power port.

Installation & Compatibility

This ASUS AC DC Power Jack is designed for a perfect fit inside the N551J, N551JK, N551JM, and GL551 laptop chassis. The connector aligns accurately with the motherboard solder pads and casing layout, allowing clean and secure installation by professional technicians.

Once installed, the laptop regains stable charging performance, accurate adapter detection, and uninterrupted power delivery during daily use. It is ideal for fixing issues such as broken charging ports, burnt pins, loose sockets, or complete charging failure, restoring full power functionality and long-term reliability.

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