When I scroll to the bottom of the child div, the body element starts scrolling.
div
body
How can I prevent this? I only want the body to s
By adding some javascript of course!
FIDDLE
$( '.area' ).on( 'mousewheel', function ( e ) { var event = e.originalEvent, d = event.wheelDelta || -event.detail; this.scrollTop += ( d < 0 ? 1 : -1 ) * 30; e.preventDefault(); });