I have problems with my layout, when I re-size window manually and restore it to normal everything is in the perfect place.
Is it possible to trick the browser and
toggle the display attribute on the areas that need to be redrawn. for example:
var toDraw = document.getElementById('redrawme');
toDraw.style.display = none;
toDraw.style.display = '';
I dont know whqt the result would be if you tried to do the entire body element as ive never tired it before.
What are you doing that you need to force a redraw?