Kolinski Posted April 17, 2013 Share Posted April 17, 2013 How can I remove MouseWheel in mozilla firefox only ? Link to comment https://forums.phpfreaks.com/topic/277071-remove-mousewheel-in-mozilla-firefox/ Share on other sites More sharing options...
codebyren Posted April 18, 2013 Share Posted April 18, 2013 Browser detection can be tricky/unreliable and is probably not recommended. That being said, you could start with something like the code below. I'm not convinced it's perfect but it worked in a quick test of Chrome and FireFox: if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1) { document.addEventListener('DOMMouseScroll', function(e){ e.stopPropagation(); e.preventDefault(); e.cancelBubble = true; }, false); } Link to comment https://forums.phpfreaks.com/topic/277071-remove-mousewheel-in-mozilla-firefox/#findComment-1425572 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.