How to reload the page when resize the page in jQuery
The following method will help you to reload the page when you resize the page, For example when you press F12 in your browser
[js]
$(window).on(‘resize’, function () { location.reload(); });
[/js]