Mouse scroll not working on Google Chrome

This is my first time posting a question, however I have searched everywhere and cannot find an answer. Recently the mouse scroll has stopped working on my WordPress website in Google Chrome. It works fine in Firefox however. I have tried deactivating plugins, deleting and reinstalling but I just cannot seem to fix it. Is anyone able to assist or point me in the right direction? My website is https://advicewrite.com.au
Thank you in advance.

Related posts

1 comment

  1. scroll event is raised when the user scrolls to a different place in the element. It applies to window objects, but also to scrollable frames and elements with the overflow CSS property set to scroll.

     <div style="width:300px; height:200px; border:1px solid black; overflow:scroll">
            Any thing long Code put  here
        </div>
        <br />
        <h3 style="display:none; color:red">Scroll event handled</h3>
    
    <script type="text/javascript">
        $(document).ready(function () {
            $('div').scroll(function () {
                $('h3').css('display', 'inline').fadeOut(1000);
            });
        });
    </script>
    

    when you scroll in div then scroll fuction will get fire

Comments are closed.