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
Try the resize event
$(window).resize(function() { console.log('window was resized'); });