I want to reload the page on browser resize only, I tried the following code it's loading the browser again and again however I am not resizing the browser window.
$(window).on('resize',function(){
location.reload();
});
also i tried this code with $(document).ready(function() { });
but not working