HITACHI IMPACT HSC-MINI
Bitsboks i solid plast med delvis transparent lokk.
Bitsene har fargekoder som gjør det raskt og enkelt å kjenne igjen dimensjoner
Innhold:
3xPH2,
1xPH3,
3xPZ2,
1xPZ3,
H4,H5,H6,
2xT20,
2xT25,
2xT30,
T40,
PH2 (50 mm),
PZ2 (50 mm),
T20 (50 mm),
T330 (50 mm),
Bitsholder.
{
let header = document.querySelector('header'); // Adjust the selector as needed
// Find the tab link element (modify the selector if necessary)
let tabLink = document.querySelector('.__lipscore_tab_link');
if (window.innerWidth < 600) {
tabLink = document.querySelector('.mobile_lipscore_tab_link');
header = document.querySelector('.__mobile-header');
}
const headerHeight = header ? header.offsetHeight : 0; // Get the height of the header
if (tabLink) {
// Dispatch a click event on the tab link
tabLink.click();
setTimeout(() => {
const targetPosition = tabLink.getBoundingClientRect().top + window.scrollY - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth' // Optional: for smooth scrolling
});
}, 100)
}
}">