Good day. Tell me, please, how to make a one-time reload of the page. I did this:
$(document).ready(function() { var reload = sessionStorage.getItem('reload'); if(!reload){ sessionStorage.setItem('reload', 1); window.location.reload(); } }); But the page still does not reload. What am I doing wrong?