Scripts with scroll functions have stopped working on several sites
-
Hi. On two of my Lay theme sites, javascript scroll functions that worked when making the sites suddenly have suddenly stopped working. All of these three code snippets have stopped working. Do you have any idea why, and how to make them work again? All code is added with the Custom CSS and HTML settings.
1 – On jimmylinus.com, the following code made the the About-link in second-menu offset above the footer when scrolling down.
<script> $(window).scroll(() => { const footerToTop = $('#footer-region').position().top; const scrollTop = $(document).scrollTop() + $(window).height(); const difference = scrollTop - footerToTop; const bottomValue = scrollTop > footerToTop ? difference : 0; $('nav.second_menu').css('bottom', bottomValue+25); }); </script>
2 – On the same site, the next and previous project arrows (as text) gradually increased in opacity when scrolling down. Now they are only visible on hover. This is the code:
<script> $(document).ready(function(){ $(window).scroll(function(){ $('.project-arrow').css("opacity", 0+ $(window).scrollTop() / $(document).height() ) }) }) </script>
3 – And on another site, colin.no, thumbnails for previous and next projects appeared after scrolling 90% of the height. This is the code:
<script> $(document).scroll(function() { var scrollPercent = 100 * $(window).scrollTop() / ($(document).height() - $(window).height()); if (scrollPercent > 90) { $('.project-arrow').fadeIn(); } else { $('.project-arrow').fadeOut(); } }); </script>
Please let me know how to fix these!
-
Dear @jorgenbry
Thank you for your patience
I will forward this so that we can take a closer lookBest wishes
Richard -
hey please use 'jQuery' instead of '$' (without the '')
Before you post:
- When using a WordPress Cache plugin, disable it or clear your cache.
- Update Lay Theme and all Lay Theme Addons
- Disable all Plugins
- Go to Lay Options → Custom CSS & HTML, click "Turn Off All Custom Code", click "Save Changes"
This often solves issues you might run into
When you post:
- Post a link to where the problem is
- Does the problem happen on Chrome, Firefox, Safari or iPhone or Android?
- If the problem is difficult to explain, post screenshots / link to a video to explain it