Author : Clark Telle

56 Posts - 0 Comments
Clark Telle has an extensive background in radio broadcasting and is an avid amateur radio (ham) operator. Clark joined Newsi8 as a contributing personality in January 2024.
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(); $(window).on('load', function() { disableMouseWheel(); // Disable again after all scripts have loaded });