Produkteigenschaften:mit UmschaltungSpezialstahlverchromtMaul 15° abgewinkeltRingseite um 13° abgewinkeltfeinverzahnt 72 Zähne (SW 8 und 9, 60 Zähne) Technische Daten:Schlüsselweite: 24 mmLänge: 333,1 mmZähne: 72 Ausführung: umschaltbar, Ringseite 15 °Marke: HAZETMaterial: SpezialstahlLieferumfang:1x Hazet Maulringratschenschlüssel 606 Schlüsselweite 24 mm Länge 333,1 mm umschaltbar, Ringseite 15 °
- Hersteller
- Hazet-Werk Hermann Zerver GmbH & Co. KG
-
Güldenwerther Bahnhofstr. 25-29,
42857 Remscheid,
Deutschland
- 02191/7920
Hazet Maulringratschenschlüssel 606 Schlüsselweite 24 mm Länge 333,1 mm umschaltbar, Ringseite 15 °
- Artikel-Nr.: 606-24
- EAN: 4000896151011
- Hersteller: HAZET

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.plentyone.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", "cc987bb7b939acf30db480767b48db12");
document.body.appendChild(script);
} else {
var script = document.getElementById('paypal-smart-payment-script');
script.src = "https://cdn02.plentyone.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", "cc987bb7b939acf30db480767b48db12");
}

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
Zuletzt angesehen
Hazet Maulringratschenschlüssel 606 Schlüsselweite 24 mm Länge 333,1 mm umschaltbar, Ringseite 15 ° 58,99 €
HAZET Bit-/Steckschlüssel-Sortiment Smart Holder 2300SH-1, 39-tlg. 62,99 €
Bosch Akku-Drehschlagschrauber GDS 18V-450 HC, 2x ProCORE 4,0, BT-Modul, L-BOXX 394,80 €
Bosch EXPERT Diamond Metal Wheel Trennscheibe, 230 x 22,23 mm 43,25 €
Bosch Lochsägen-Set, 11-teilig, Durchmesser: 22 - 68 mm 9,89 €
Fisch-tools Forstnerbohrer Type 0317 Wave Cutter Ø 24 mm Gesamtlänge 90 mm Schaft-Ø 8 mm 17,99 €
Bosch BITURBO Akku Drehschlagschrauber GDS 18V-1000 ohne Akku ohne Ladegerät im Karton 252,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
});