I have this code snippet which scrolls the entire body to a particular location →
$('html, body').animate({ scrollTop: 1000}, 800, 'swing');
But what if i want to scroll to a particular location within a div like this →
$('#div-id').animate({ scrollTop: 1000}, 800, 'swing');
I tried this way but its not working, can you tell me where i am going wrong?
NOTE: The element #div-id
has overflow:auto as one of its css rule.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…