jQuery Smooth Scrolling Update
User jQuery(document).ready(function ($) { let currentIndex = 0; const slides = $(".slide"); const totalSlides = slides.length; let isScrolling = false; const sliderWrapper = $(".slider-wrapper"); const sliderContainer = $(".slider-container"); function updateSliderHeight() { let slideHeight = window.innerHeight; $(".slide").css("height", slideHeight + "px"); } function scrollToSection(index, updateHash = true) { if (index >= 0 && index < totalSlides) { […]