Produkteigenschaften:Hochwertiges Akku-Maschinen-Set bestehend aus Akku-Schlagbohrschrauber und Akku-Schlagschrauber , 2 Akkus, Schnellladegerät in der praktischen HD-BoxTechnische Daten:Milwaukee Akku-Schlagbohrschrauber M18 FPD3:Akku Li-ionAkkukapazität [Ah] AhAkkusystem M18Bohrfutter_Spannbereich [mm] 13By technology FuelGewicht mit Akku [EPTA] [kg] 2.2 (M18 B5)Leerlaufdrehzahl [min_1] 0 - 2100Max. Bohrdurchmesser in Holz [mm] 89Max. Bohrdurchmesser in Stahl [mm] 16Max. Drehmoment [Nm] 158Max. Schlagzahl [min_1] 0 - 33,000Spannung [V] 18Lieferumfang Gürtelclip, seitlicher HandgriffMilwaukee Akku-Schlagschrauber M18 FID3-0X:AkkuLi-ionSpannung (V) 18Leerlaufdrehzahl (min⁻¹) 1750/3000/3900/0-3900Max. Drehmoment (Nm) 226Max. Drehmoment [Nm] 226Max. Schraubendurchmesser M16Schlagzahl (min⁻¹) 1400/3600/4400/0-4400Standardausrüstung / Lieferumfang Gürtelclip und BithalterWerkzeugaufnahme ¼″ HexGewicht mit Akku (EPTA) (kg) 1.7 (M18 B5)Lieferumfang:1x Milwaukee M18 FUEL™ Akku-Schlagbohrschrauber M18 FPD31x Milwaukee M18 FUEL™ Akku-Schlagschrauber M18 FID32x M18™ 5,0-Ah-Akku M18 B51x M12-18 FC Schnellladegeärt1x HD-Box
- Hersteller
- Techtronic Industries Central Europe GmbH
-
Walder Str. 53,
40724 Hilden,
Deutschland
- www.milwaukeetool.eu/service/contact/
- +49210396000
Milwaukee Maschinen-Set Set M18 FPP2A3-502X: M18 FPD3 + M18 FID3 + 2x 5,0 Ah
- Artikel-Nr.: 4933480873
- EAN: 4058546411589
- Hersteller: Milwaukee

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);
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", "def65ab81aad228ff39bc3e24d92bbfc");
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", "def65ab81aad228ff39bc3e24d92bbfc");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
$(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
});