Hi is it possible to disable window scrolling without using overflow:hidden; when i\'m hover an element?
overflow:hidden;
i tryed :
$(\'.chat-content\').
Try to handler 'mousewheel' event on all nodes except one
$('body').on({ 'mousewheel': function(e) { if (e.target.id == 'el') return; e.preventDefault(); e.stopPropagation(); } })
Demo: http://jsfiddle.net/DHz77/1/