I have a page where the user can dynamically add file upload boxes. Adding the boxes changes the height of the div they are in, but certain elements of the div below it stay in the same place, so they start to overlap with the new DOM elements.
This works correctly in IE8, Firefox, Chrome. How can I force IE7 to reflow the page with the new DHTML?
The best solution I worked out was this:
window.resizeBy(1, 0);
setTimeout(UndoResize, 0);
But it doesn't work with a maximized window (it restores the window).