Produkteigenschaften:S-MaulVerzahnung zusätzlich induktiv gehärtetBacken blank geschliffenrot pulverlackiertChrom-Vanadin-Elektrostahl, geschmiedet, mehrstufig ölgehärtet Technische Daten:Spannweite: 10-120 mmGesamtlänge: 680 mmGriff: rot pulverbeschichtet Marke: KNIPEX für Rohre: 3"für Rohre mm: 76,2 mmFarbe: rotMaterial: Chrom-Vanadin-ElektrostahlNorm: DIN 5234Modell: S-MaulInnen-Ø: 3"Lieferumfang:1x Knipex Rohrzange Gesamtlänge 680 mm Spannweite 10-120 mm für Rohre 3"
- Hersteller
- KNIPEX-Werk C. Gustav Putsch KG
-
Oberkamper Str. 13,
42349 Wuppertal,
Deutschland
- 0202/47940
Knipex Rohrzange Gesamtlänge 680 mm Spannweite 10-120 mm für Rohre 3"
- Artikel-Nr.: 83 30 030
- EAN: 4003773014164
- Hersteller: KNIPEX

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

- Versandkostenfreie Lieferung in DE ab 100€
- Kostenloser Rückversand
Zuletzt angesehen
Knipex Rohrzange Gesamtlänge 680 mm Spannweite 10-120 mm für Rohre 3" 149,99 €
Hazet Bit- und Winkelschraubersatz 69-tlg. 2200SC-1 64,99 €
Bosch PRO Metal HSS-G Spiralbohrer, 2,5 x 30 x 57 mm, 10 Stück 4,99 €
Bosch PRO Stainless Steel HSS-Co Spiralbohrer, 4,8 x 52 x 86 mm, 10 Stück 13,89 €
Bosch TiN-Bohrer- und Bit-Set V-Line 91-teilig, Ratschen-Schraubendreher 29,99 €
Makita Akku-Schlagschrauber DTW1004Z, 18V 1/2" 1050 Nm ohne Akku und Ladegerät im Karton 299,99 €
Makita Akku-Winkelschleifer XGT 40V 125mm Solo 161,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
});