Next.js Discord

Discord Forum

window onload not working on mobile

Unanswered
Silver Marten posted this in #help-forum
Open in Discord
Silver MartenOP
hi i have loader component which is importing in app.tsx and i have useEffect() and inside have windown.onload but it dont working on mobile but it working on pc help please

3 Replies

It's likely that the load event has already fired by the time useEffect runs, so it won't work. It may work with useLayoutEffect but i don't know and even then it might not be the best solution
So since the event has already fired nothing will be logged
Silver MartenOP
hi