Scroll in dom7 help

$$(’.page-content’).animate({scrollTop:0}, ‘300’); is that work in dom7? or can i do something else for scroll top?

Dom7 already provides methods for scrolling. Check here: https://framework7.io/docs/dom7.html

The correct method in your case will be:

Dom7('.page-current .page-content').scrollTop(0, 300);

1 Like