I have a table which needs to be scrollable within a single page. I've used a jQuery scrollable table plugin to accomplish this but now I need to figure out how to scroll to a specific row.
I've tried a few different methods including:
$.scrollTo($('#rowIWantToScrollTo'));
and
var rowpos = $('#rowIWantToScrollTo').position();
$('#myTable').scrollTop(rowpos.top);
and
$('#rowIWantToScrollTo').scrollIntoView();
And nothing has worked so far.