Produkteigenschaften:2 x LiHD Akkupack 18 V/5,5 AhLadegerät ASC 145
Technische Daten:Art des Akkupacks LiHDSpannung des Akkupacks 18 VAnzahl Akkupacks 2Kapazität 5.5 Ah
Lieferumfang:2x 18V LIHD 5.5 Ah Akku1x Ladegerät ASC 145
- Hersteller
- Metabowerke GmbH
-
Metabo-Allee 1,
72622 Nürtingen,
Deutschland
- 07022/720
Metabo Basis-Set 2x 18V LiHD 5,5 Ah (625368000) + Lader ASC 145 im Karton
- Artikel-Nr.: 685122000
- EAN: 4007430330383
- Hersteller: METABO
const observer = new MutationObserver(() => {
const el = document.getElementById("delivery-date-template");
if (el) {
el.innerHTML = el.innerHTML.replace(
"Lieferung:",
"Lieferung:"
);
observer.disconnect();
clearTimeout(timeoutId);
}
});
observer.observe(document.body, { childList: true, subtree: true });
const timeoutId = setTimeout(() => observer.disconnect(), 2000);
DHL Paket
if(!document.getElementById('paypal-smart-payment-script'))
{
var script = document.createElement("script");
script.type = "module";
script.id = "paypal-smart-payment-script";
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "8f39cd3d7489a5724682bcd21ad7b03c");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentymarkets.com/qddd911h1zyd/plugin/118/paypal/js/smartPaymentScript.min.js";
script.setAttribute("data-client-id", "AfslQana4f4CQjHvRBnUc6vBJg5jgJuZFwM-SbrTiGKUAqB7MrxQv3QWFdQ6U1h7ogMDokT1DNBzRxMw");
script.setAttribute("data-user-id-token", "");
script.setAttribute("data-merchant-id", "9NUA4DV8EVBB8");
script.setAttribute("data-currency", "EUR");
script.setAttribute("data-append-trailing-slash", "");
script.setAttribute("data-locale", "de_DE");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "8f39cd3d7489a5724682bcd21ad7b03c");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
Zuletzt angesehen
Metabo Basis-Set 2x 18V LiHD 5,5 Ah (625368000) + Lader ASC 145 im Karton 179,98 €
Metabo Akku-Bohrschrauber-Set BS18LT 18V mit 2x 4,0 Ah Akkus + Lader im Koffer 179,99 €
Metabo Akku-Winkelschleifer WVB 18 LT BL 11-125 Quick 2x 5,5 Ah LiHD und Ladegerät 430,99 €
Metabo Akku-Winkelschleifer W 18 L 9-125, 2x 4,0 Ah und Ladegerät in metaBOX 165 L 211,99 €
DeWalt Akku-Maschinen-Set DCK853P4, 18 V: 8 Geräte + 4x 5,0 Ah + Ladegerät in Tough-Box 1.679,99 €
DeWALT Akku-Bohrhammer DCH072P2, SDS-plus 12V, 2x 5,0 Ah und Ladegerät in TSTAK 293,99 €
DeWALT Akku Schrauber 12V DCF601D2 1/4" 2x 2,0 Ah Akku + Lader im T-STAK 161,98 €
DeWALT Akku-Schlagbohrschrauber 12V DCD706D2 mit 2x 2,0 Ah Akku + Lader in TSTAK 170,99 €
$(document).ready(function() {
setTimeout(function () {
if (
window.innerWidth < 1200 &&
$('#m1').length &&
$('#mM').length &&
$('#m1').is(':empty')
) {
$('#mM').appendTo('#m1');
}
}, 1000);
$( window ).resize(function() {
if ($(window).outerWidth() < 1200 ) {
$('#mM').appendTo('#m1');
} else {
$('#mM').appendTo('#m2');
}
});
});
$(function () {
const $links = $('.anchors a');
const nav = document.querySelector('.anchors');
function updateActiveLink() {
const scrollTop = $(document).scrollTop();
$links.each(function (i, link) {
const targetId = $(link).attr('href');
const $target = $(targetId);
if (!$target.length) return;
const top = $target.offset().top;
let bottom;
if (i < $links.length - 1) {
const nextLinkHref = $($links[i + 1]).attr('href');
const $nextTarget = $(nextLinkHref);
bottom = $nextTarget.length ? $nextTarget.offset().top : $(document).height();
} else {
bottom = $(document).height();
}
if (scrollTop >= top - 120 && scrollTop < bottom - 120) {
$links.removeClass('active');
$(link).addClass('active');
scrollNavToLink(link);
return false; // break .each()
}
});
}
function scrollNavToLink(link) {
if (!nav) return;
const linkLeft = link.offsetLeft;
const linkWidth = link.offsetWidth;
const navWidth = nav.offsetWidth;
const scrollTo = linkLeft - (navWidth / 2) + (linkWidth / 2);
nav.scrollTo({ left: scrollTo, behavior: 'smooth' });
}
let scrollTimer;
$(document).on('scroll', function () {
updateActiveLink(); // run immediately
clearTimeout(scrollTimer);
scrollTimer = setTimeout(updateActiveLink, 100); // trailing update
});
updateActiveLink(); // on load
});