Nov 27, 2002 #1 JavaTurkey Technical User Joined Dec 24, 2001 Messages 42 Location US how do i get the text to load first in an html page, followed by all images and javascripts? is there a script that will do this?
how do i get the text to load first in an html page, followed by all images and javascripts? is there a script that will do this?
Nov 28, 2002 #2 coracal Technical User Joined Nov 23, 2002 Messages 3 Location CZ Hello, 1) use in tag img attributes width and height - because browser must know size of image. And then first display text and after images. 2) use window.onload=function(){ //here is code, that will be avaible after page is definitely load } Coracal Upvote 0 Downvote
Hello, 1) use in tag img attributes width and height - because browser must know size of image. And then first display text and after images. 2) use window.onload=function(){ //here is code, that will be avaible after page is definitely load } Coracal