I need to run a script every time a table is resized (whenever the user resizes the browser window). Does anyone know how this can be done?
Asked
Active
Viewed 1,463 times
3 Answers
5
function myFunction() {
alert('resized');
}
window.onresize = myFunction;

Ken Browning
- 28,693
- 6
- 56
- 68