go to: http://fancybox.net/ open any example (on bottom page)
when the mouse is hovered over the content inside the fancybox, the browser main window can´t be scrolled. when the mouse is anywhere else it works. i dont want this behavior. how would you fix this?
the page under the fancybox modal doenst scroll, when the mousecursor is inside the fancyboxmodal.
Add the following to the plugin options:
Thanks to pheonix for pointing this at https://stackoverflow.com/a/14880963/1655981
If you don't need ability to scroll images in gallery with mousewheel, then good solution is to add
$('#fancybox-wrap').unbind('mousewheel.fb');
just after.fancybox()
initialization as mentioned by vbulant