I earlier asked another question here However, I later realized that my requirements are a little different. The above referenced solution takes me only to the error div but I need to scroll up slightly above that to the label for the input text field. Below is the html.

<label class="label_required" for="phone_num_key"></label>
 <table class="table_Box">
  <tbody>
    <tr id="someId" class="redAlert">

       <Some more mark up here>

    </tr>
  </tbody>
 </table>

How can I scroll up to the label instead of the tr element with class 'redAlert' I tried the below but it didn't work for me.

var errorDiv= $('.redAlert:visible').first();
var errorLabel = errorDiv.parent("table").prev("label");
// also tried this
//var errorLabel = errorDiv.closest("label").prev();
var scrollPosition = (errorLabel.offset().top); 
    $(window).scrollTop(scrollPosition);

Looks like the .offeset() function cannot be called on Labels ?

Edit - Please note that there are multiple such labels on the form so I cannot basically use the class selector

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

offset() does work. problem is parent().

use errorDiv.parents('table').prev('label');

FYI,

.parent( [selector] )

Given a jQuery object that represents a set of DOM elements, the .parent() method allows us to search through the parents of these elements in the DOM tree and construct a new jQuery object from the matching elements. The .parents() and .parent() methods are similar, except that the latter only travels a single level up the DOM tree.

                                           from http://api.jquery.com/parent/
link|improve this answer
Thanks , much appreciated. It worked perfectly .. – user1006072 Jan 17 at 7:23
@user1006072 glad to hear that, just don't forget to check this answer :) – Sang Jan 17 at 7:45
Sure ! Done that. – user1006072 Jan 17 at 7:51
Another quick question - how would I focus on the immediate next input element after the error div ? – user1006072 Jan 17 at 7:51
@user1006072 Is the input element sibling of error div? if it is immediately following object, you can use next(). check it: api.jquery.com/next – Sang Jan 17 at 8:49
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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