How do I change the load order of my page? For example how would I get different divs to load first or last.
not sure thats done in HTML, its probably somewhere in the server settings though or something similar.
i assume that you are interested in - display some part of your webpage ahead of others, to the client. in order to achieve this, i would control the order of appearance of each desired element using javascript. quite like a slideshow, except, that the elements would appear at different parts of the page, rather than one on top of the other...
n your style sheet, give the style you want to appear last: display: none;Then in the body tag change the display to block using onload:document.getElementById('audio').style.display = 'block';" I’ve tested this in Firefox and IE on both Linux and Windows and it seem to work perfectly.