Scrolling to the top in Custombox modal

时间:2016-04-04 18:44:28

标签: javascript jquery scroll modal-dialog

I'm using Custombox to open a modal. This modal however can get a little long so I added a "Go To Top" button.

I found this at SO and I've been trying different combinations to make the modal scroll back up.

I've tried:

$("html, body").animate({
    scrollTop: $("#modal-id").offset().top
}, 800);

and a handful of different combinations for getting the offset but I can't get it to scroll to the top of the modal.

1 个答案:

答案 0 :(得分:1)

The scrollbar belongs to the .custombox-modal-wrapper element, so you should scroll it, not <body> or <html>:

$(".custombox-modal-wrapper").animate({
    scrollTop: $("#modal-id").offset().top
}, 800);