Disable Mouse Scroll To Resize Window

Disable Mouse Scroll To Resize Window simply add below script to your site

$(window).bind('mousewheel DOMMouseScroll', function (event) {
   if (event.ctrlKey == true) {
   		event.preventDefault();
   }
});

Also, you can disable it on Ctrl + & Ctrl –

$(document).keydown(function(event) {
   if (event.ctrlKey==true && (event.which == '187'  || event.which == '189' ) ) {
	event.preventDefault();
    }
});

Leave a comment