rafaelmaeuer
2/16/2017 - 11:08 AM

Refresh page on resize with javascript or jquery - From http://stackoverflow.com/questions/14915653/refresh-page-on-resize-with-javascript-o

// javascript
window.onresize = function(){ location.reload(); }

// jquery:
$(window).resize(function(){location.reload();});

// or
$(window).on('resize',function(){location.reload();});