Skip to content
Advertisement

Load stored width position of vertical sidebar after page reload

How to set and use the local storage data of the left sidebar width after resizing the sidebar and reloading the page?

I have created a local storage data and retrieve it using the codes below but after reloading the page the resized sidebar is going back to its default width. It should have an “onload” event attribute?

Here is the link where I get the codes https://htmldom.dev/create-resizable-split-views/

Credit to: htmldom.dev for sharing this code

JavaScript

Advertisement

Answer

If you want to load the stored position when the page is loaded, you might want to use the DOMContentLoaded event:

JavaScript

Note that you have to add this event listener outside of your mouseMoveHandler.

You can learn more about the DOMContentLoaded event here: https://developer.mozilla.org/de/docs/Web/API/Window/DOMContentLoaded_event.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement