Prevent scroll in Webpopup

Hello,
I’m trying differents javascript methods to prevent the scroll inside the webpopup, with no luck.

There is one that Building429 mentioned in a previous post which was:

document.container.addEventListener('touchmove',function(e) {e.preventDefault();});

but it doesn’t work for me…
I also tried this one that uses jQuery, but it doesn’t work either.
[blockcode]
$("#container").bind(‘touchmove’,function(e){
e.preventDefault();
});
[/blockcode]

Someone could help me solve this one?

What I basically have in my local html is a div with a form in it.

[blockcode]






[/blockcode]
Thank you! [import]uid: 29594 topic_id: 7690 reply_id: 307690[/import]