Refresh page on resize with javascript or jquery - From http://stackoverflow.com/questions/14915653/refresh-page-on-resize-with-javascript-or-jquery
// javascript
window.onresize = function(){ location.reload(); }
// jquery:
$(window).resize(function(){location.reload();});
// or
$(window).on('resize',function(){location.reload();});