Scrolling in Modal does background scrolling on Safari

I need help with an annoying thing. I have a modal popup with a vertical scroll list inside. When scrolling inside modal code, sometimes the background scrolls instead. I tried to add

body{
position:relative;
overflow: hidden;
}

which works fine in most browsers, but Safari for my iPhone is still scrolling!

Please help me find how to solve this!

Regards Christian

+5
source share
1 answer
$('body').css('overflow','hidden');
$('body').css('position','fixed');

Did it for me.

+1
source

All Articles