Disable Revslider Mousewheel to scroll as normal inside a certain div
Solution:
// prevent scroll when inside form div
$(window).bind('mousewheel DOMMouseScroll', function(event){ returnfalse});
$('#YourID').bind('mousewheel DOMMouseScroll', function (e) { returnfalse; });