vote up 0 vote down star

I'm using the jquery validation plug-in. When there are invalid fields, it focuses on the first invalid field. However, my labels are on top of my fields and I want to scroll up just a bit so the user can see both the label and the field. I've looked at the scrollTo plug-in, but haven't figured out an easy way to integrate it. Maybe someone has done something like this before?

flag
can you maybe show us how you do the scrolling up till now? you say it scrolls towards the inputfield, so there is already some scrolling in place. – Sander Aug 4 at 12:57
@sander setting the focus to something off-screen will force the browser to scroll at least far enough that the focused element is seen. that may be browser implementation dependent, though – Kip Aug 4 at 13:12
I'm using the jquery validate plugin. Indeed it focuses to the first invalid element. If that element if off-screen, it does indeed scroll just up to that element (input field), but not any higher. It doesn't scroll, it just jumps very quickly to the field. If there is a scroll, it's too fast to be perceived. – hiester Aug 4 at 17:21

1 Answer

vote up 0 vote down

Ok, so you used the focus to jump to your element which failed validation.

you can remove that code since you are going to try implement scrolling towards that element.

these steps need to be taken in order to scroll to the correct element.

  1. adding the scrollTo plugin inside your head.
  2. making sure that the label is ready (with an ID or class or something) (which in your case is the target, since you want to scroll to the location of the label and not the input field)
  3. if you now do:

    $.scrollTo( '#yourlabelID', "slow");

it will roll to the position of your label.

as in regular scrolling, if the element is too close to the bottom of the page, it will only scroll to the bottom of the page and not further.

demo: http://sander.netcentric.be/test/scroll.html

link|flag
I implemented this. In the jquery-validate.js, right before it puts focus on the first invalid element, I put the scrollTo to the label fo that element. It works great in Firefox, but not in IE. I think it's a problem with scrollTo and IE. – hiester Aug 4 at 16:51
the example i created seems to work both in IE and firefox on my computer, so there must be something with the validateplugin and scrollTo combination i suppose. – Sander Aug 4 at 20:16

Your Answer

Get an OpenID
or

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