Kunstavgift på 5% (110,-) legges på i prisen.
{
const header = document.querySelector('header'); // Adjust the selector as needed
const headerHeight = header ? header.offsetHeight : 0; // Get the height of the header
// Find the tab link element (modify the selector if necessary)
const tabLink = document.querySelector('.__lipscore_tab_link');
if (tabLink) {
// Dispatch a click event on the tab link
tabLink.click();
const targetPosition = tabLink.getBoundingClientRect().top + window.scrollY - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth' // Optional: for smooth scrolling
});
}
}">