Produkteigenschaften: 60 Zähne, 6° Rückschwenkwinkel Schnelllöseknopf Umschalthebel für einfachen Richtungswechsel Komfortabler und rutschfester 2-Komponenten-Griff mit Aufhängeloch für einfache Aufbewahrung Hochleistungs-CrV-Stahl Ausführung vernickelt und matt verchromt SB: SB-verpackt Standards: ISO 3315/1174-2, DIN 3122/3120 Komfortabler 2-Komponenten-Griff für optimalen Halt Schnelllöseknopf zur einfachen, schnellen und sicheren Anwendung Der Steckschlüssel-Einsatz ist während der Arbeit sicher befestigt und auf Knopfdruck schnell gelöst
Technische Daten: Winkel 6 ° Anzahl Zähne 60 Vierkant 1/2 in Breite des Kopfes 43 mm Stärke des Kopfes 40 mm Breite Griff 28 mm BETMS Laserbeschriftung 1/2 " Zertifikate ISO 3315/1174-2 / DIN 3122/3120 / UNE 16512 Produkt-Höhe 35 mm Produkt-Länge 300 mm Gewicht 0.6000 kg Produkt-Breite 60 mm Gewicht (inkl. Verpackung) 0.022 kg Länge (inkl. Verpackung) 0.305 m Höhe (inkl. Verpackung) 0.08 m Breite (inkl. Verpackung) 0.135 m
Lieferumfang: 1x Bahco Birnenförmige 1/2"-Umschaltknarre mit 60 Zähnen und 6°-Rückschwenkwinkel, 250 mm
Hersteller SNA Europe (Deutschland) ein Ge- schäftsbereich d. SNA
Wielletstr. 10,
40822 Mettmann,
Deutschland 02104/833830 Bahco Birnenförmige 1/2"-Umschaltknarre mit 60 Zähnen und 6°-Rückschwenkwinkel, 250 mm Artikel-Nr.: SBS81 EAN: 7314153009937 Hersteller: BAHCO SALE Dieser Artikel ist stark reduziert und daher von Gutscheinen und Rabatten ausgeschlossen.
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", "08f74ffd3dfcbab47ae98aaf9529026e");
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", "08f74ffd3dfcbab47ae98aaf9529026e");
}
Versandkostenfreie Lieferung in DE ab 100€ Kostenloser Rückversand EXPRESS mit UPS NEXT DAY möglich Bei Bestellung mit Zahlungseingang vor 12 Uhr, Aufpreis: 9,99€ (Zustellung Mo.-Fr.)
$(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
});