I am working on jquery popup.
When popup is opened i need to scroll the content into it.
But it is showing problem when i am trying to scroll the content with mouse wheel. It scrolls the background page also. I have used:
$(window).scroll(function() { return false; });
but it stops the scrolling of popup content also and with
$("body").css("overflow", "hidden");
it hides the scroll from background page. Is there any another way to prevent the background page to scroll?