BOOK TID I EN AF VORES AFDELINGER

Tagline

This temporary text is utilized solely for demonstration purposes, serving as a stand-in until authentic and finalized content becomes available. Its primary function is to temporarily represent and fill in designated spaces.

I am a button

Hello world!

Uncategorized

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

kadir-duran

Hello world!

Uncategorized

Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

kadir-duran

document.addEventListener('DOMContentLoaded', (event) => {
  // Give some time for Bricks to init the sliders
  setTimeout(() => {
    // Please replace the ID with your Sliders Bricks Element ID !!NOT CSS ID!!
    const mySlider = window.bricksData?.splideInstances['14838a'] || false
    const myPrevBtn = document.querySelector('.brxw-slider-arrow-prev')
    const myNextBtn = document.querySelector('.brxw-slider-arrow-next')

    if (mySlider && myPrevBtn && myNextBtn) {
      // Add click event handlers for your custom buttons
      myPrevBtn.addEventListener('click', function () {
        mySlider.go('-1') // go() function by SplideJS
      })
      myNextBtn.addEventListener('click', function () {
        mySlider.go('+1') // go() function by SplideJS
      })
    }
  }, 250)
})