Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Scroll to div when user idle for first five seconds after page load: Reply To: Scroll to div when user idle for first five seconds after page load:

#204101
Shikkediel
Participant

Could you maybe add the link (that I think was meant to be there)?
Shouldn’t be too complicated though :

var move = setTimeout(function() {

    // scroll code
}, 5000);

$(window).on('mousemove touchstart', function() {

    clearTimeout(move);
});