- From: Brian Bober <netdemonz@yahoo.com>
- Date: Tue, 19 Mar 2002 02:08:59 -0500
- To: <www-style@w3.org>
Why doesn't CSS have a way to stop the immediate load of a section of a page? Isn't that presentational? The section wouldn't be showed until load is allowed, and included content, like images, wouldn't be downloaded. For instance: <html> <head> <style type="text/css"> <!-- #delayedload { load: no;} --> </style> </head> <body onload="setTimeout(\"document.getElementById('delayedload').style.load=' yes'\",1000)"> <img src="someURI" id="delayedload"> </body> </html> It would be the same as doing something like: Blah=new Image("SomeURI"); After a second. _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com
Received on Tuesday, 19 March 2002 03:16:44 UTC