Descrizione del prodotto: Il regalo perfetto per gli avvitatori più esigenti Il calendario dell'Avvento GEDORE RED 2024 Calendario dell'Avvento con assortimento di 33 pezzi Include un cacciavite a punta magnetica e un cricchetto a punta, nonché 25 punte nei profili PH, PZ, SL, IN, TX in lunghezze di 25 mm e 90 mm. A questi si aggiungono un pratico adattatore a cambio rapido da 1/4" e bussole in SW 8, 10, 13 Pratica custodia in una comoda valigetta di plastica dal design rosso GEDORE
Dati tecnici Contenuto: Cacciavite con punta da 1/4", magnetico Cricchetto da 1/4" Adattatore per cambio rapido da 1/4 Presa da 1/4" 8 10 13 mm Bit da 1/4" L. 25 mm: PH1 PH2 (2x), PZ1 PZ2 (2x), slot 4 5,5 mm + adattatore, TX T15 T20 T25 T30, IN 2 2,5 3 4 5 6 8 10 mm Bit da 1/4" L. 90 mm: PH 2, PZ 2, TX T25, IN 5 mm, scanalatura 3 mm
Contenuto della fornitura: 1x Calendario dell'Avvento rosso Gedore 2024 - 33 pezzi,
Manufacturer GEDORE Werkzeugfabrik GmbH & Co. KG
Remscheider Str. 149,
42899 Remscheid,
Deutschland 02191/596900 Ceres::Template.itemBundleName Artikel-Nr.: 3300217-A2 EAN: 4250845524391 Hersteller: Gedore Werkzeugfabrik GmbH & Co. KG
54,99 €
Ceres::Template.crossPriceRRP
-40%
inkl. MwSt., ggf. zzgl. Versandkosten
Ceres::Template.singleItemContent
1
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", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "73d47121653179def7267f6b0a12b3e8");
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", "it_IT");
script.setAttribute("sandbox", "");
script.setAttribute("googlePayComponent", 0);
script.setAttribute("applePayComponent", 0);
script.setAttribute("logToken", "73d47121653179def7267f6b0a12b3e8");
}
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
});