The jQuery dialog box scrolls to an item in the dialog box

I have the following problem:

I open a jQuery user interface dialog box. This dialog box contains a lot of content that cannot be displayed immediately.

Can I scroll to a specific item in a dialog box?

+6
source share
1 answer

Possible duplicate

The answer to the previous question:

var container = $('div'), scrollTo = $('#row_8'); container.scrollTop( scrollTo.offset().top - container.offset().top + container.scrollTop() ); // Or you can animate the scrolling: container.animate({ scrollTop: scrollTo.offset().top - container.offset().top + container.scrollTop() });​ 
+9
source

Source: https://habr.com/ru/post/911744/


All Articles