Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

374
Views
How to stop body scroll in IOS when modal open (react)

I found this guide which works: https://codepen.io/geoffgraham/pen/LogERe

I've created this helper that uses the code in my react app:

 export const removeBodyScrollingWhenModalOpen = (
        modalOpen: boolean,
    ) => {
        if (modalOpen) {
            document.body.style.position = 'fixed';
            document.body.style.top = `-${window.scrollY}px`;
        } else {
            const scrollY = document.body.style.top;
            document.body.style.position = '';
            document.body.style.top = '';
            window.scrollTo(0, parseInt(scrollY || '0') * -1);
        }
 };

When used with the modal:

const handleClose = () => {
    onClose(false);
    removeBodyScrollingWhenModalOpen(false);
};

useEffect(() => {
    removeBodyScrollingWhenModalOpen(open);
}, [open]);

However, to make the code work properly and not loose scroll position when the modal is closed, I need to add this bit of code:

window.addEventListener('scroll', () => {
  document.documentElement.style.setProperty('--scroll-y', `${window.scrollY}px`);
});

But not sure how to implement that with my hook above, any ideas?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!