im using this code javascript with localStorage (something like session in php)
<script>
$(function(){
var a = localStorage.getItem('login');
if(a=="" || a==null){window.location.href = "dash-home.html";}
else{window.location.href = "dash-chat.html";}
});
</script>
but when location in dash-home.html, that page always refresh page (F5 repetitive)