Hello,
Currently I have a site where a bar (with various links) is prepended to the body (actually appended to the source, but it is rendered on top of the page, so prepended to the result) using javascript. This Javascript is dynamically loaded trough an init script (which loads jquery, etc). Once jquery has been loaded the script is run to append the topbar.
In most browsers (Firefox, Internet Explorer, Safari) it just renders with the bar immediately, but Google Chrome (probably because its tries to render early on, making it faster on most pages) first renders the page, then renders the bar, and causing the page to jump ~40px everytime it is rendered.
I find this whole jumping rather ugly and annoying, so does anybody have an idea on solving this?