i know that you with $(window).width() can get the size of the web browser.
i want to detect when the user change the size of his web browser so i could readjust the col
Here's a little piece of code I put together for the same thing.
(function () { var width = window.innerWidth; window.addEventListener('resize', function () { if (window.innerWidth !== width) { window.location.reload(true); } }); })();