I\'m using jQuery Datatables. I want to change the height of the table whenever a user resizes the window. I\'m able to catch the window resize event which allows me to calculat
I think you can change the height of the table by css
$(window).resize(function(){ $('#yourtable').css('height', '100px'); });