Forums

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

Home Forums JavaScript Popup modal and jump to anchor inside Reply To: Popup modal and jump to anchor inside

#297254
j7f4f2a4fds2
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)
)});