Author : Nancy Wilmaft

75 Posts - 0 Comments
Nancy Wilmaft is an eclectic researcher with degrees in political science and psychology. She started writing for News i8 in 2023.
News i8 // Function to disable jQuery Mousewheel plugin function disableMouseWheel() { // Unbind the mousewheel event from all elements $(document).off("mousewheel"); $(document).off("DOMMouseScroll"); // For Firefox support } // Call the function to disable mouse wheel functionality disableMouseWheel();