vote up 0 vote down star

Hi everyone,

I'm trying to prevent element from scrolling in safari on iphone. I've tried solutions mentioned here: http://stackoverflow.com/questions/777621/iphone-safari-scroll-a-list-inside-a-html-container But my list is large and it doesn't work so smoothly.

What I have in mind is to detect onscroll event and reposition the element, so it's in the boundaries of viewport.

But I can't find way to detect coordinates of the viewport. Can anybody help with this?

Thanks.

flag

75% accept rate

2 Answers

vote up 0 vote down

So what does this do exactly? Does it prevent the view port from moving or what? How would I call this function to position a div relative to the view port??

link|flag
You should not post follow-up questions as answers, better start a new question instead. The "Ask Question" button is in the top right. – sth Sep 23 at 0:34
vote up 0 vote down
document.addEventListener(
	'touchmove',
	function touchMove(event) {
		event.preventDefault()
	},
	false
);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.