Home › Forums › JavaScript › Popup modal and jump to anchor inside › Reply To: Popup modal and jump to anchor inside
October 12, 2019 at 2:28 pm
#297254
Participant
over at stackexchange @marzelin suggested the following which works fine:
”
The problem is that the layout updates only after both click handlers are done. A quick fix is to wrap a handler with requestAnimationFrame:
$(‘.item1’).on(‘click’,function(){ requestAnimationFrame(() =>
$(‘#contributors’).animate( { scrollTop: $(‘#item1’).offset().top -40 }, 500)
)});
“