Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This scrolling form uses anchor navigation within a container. Click-and-dragging any textual input field will actually drag the whole form — within .scrollback — breaking the whole experience, as illustrated in the image below. To reproduce the problem, just type something in the Username or Password fields and select the whole text using your mouse: if you drag your mouse outside the selection, you'll notice you'll drag the whole form too.

I already tried shrinking the form's width after the scrolling animation, so that there is nothing on the sides to scroll to. This works just fine, but then I put back the form's original width before the animation (so the form can actually scroll), which causes the scrolling to jump always to the start of the form, instead of starting in the currently active section within the form.

Is there any way to force the form not to drag by dragging text within the input fields? I'd like it to scroll only by using the anchor navigation. Please have under consideration that I have to stick with the localScroll scrolling library, because I'm running lots of callbacks, both before and after the animation (and for accessibility).

enter image description here

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.