//flex table opened by JP

Click to See Complete Forum and Search --> : Webpage HELP!


brandon184
07-10-2000, 10:13 PM
I remember I used to have this Javascript that would give the user a little page that said, "please wait!" while it loaded the page in front of it so the user did not have to see it load, it would just come up.

Does anyone know where I can find this script, or do they have it?

Thanks,
- Brandon

SoopaStar
07-10-2000, 10:40 PM
you may be able to fine something at earthweb' sites:
www.htmlgoodies.com (http://www.htmlgoodies.com)
and
www.javascripts.com (http://www.javascripts.com)

I know they have an auto-image loader on html goodies, but I have never seen a script like what you are describing.

Paul

howste
07-10-2000, 11:02 PM
Paste this into the <head> section:
<SCRIPT LANGUAGE="javascript">
<!--
var new_window = window.open("Loading.htm", "_load_page","width=100,height=100");
// -->
</SCRIPT>

Paste this after the body:
<SCRIPT LANGUAGE="javascript">
<!--
new_window.close();
// -->
</SCRIPT>

You can make the window any size you want. Change Loading.htm to whatever page you want to load. I use this on my free web site to kill their pop-up window. I load my window before theirs has a chance to.

Hope this helps http://sysopt.earthweb.com/forum/smile.gif

Steve

CujoRbd
07-11-2000, 02:04 AM
click here (http://www.httpcity.com/EzBoard/loading.htm) to look at an example of what i think you are wanting here.

it also contains instructions for its use.

if you have any questions, feel free to e-mail me (http://sysopt.earthweb.com/cgi-bin/forum/Ultimate.cgi?action=email&ToWhom=CujoRbd) or post further.


CujoRbd

brandon184
07-11-2000, 11:29 AM
Thanks cujo.. thats pretty much exactly what I need. http://sysopt.earthweb.com/forum/smile.gif

Thanks,
- Brandon

CujoRbd
07-12-2000, 12:21 AM
[This message has been edited by CujoRbd (edited 07-13-2000).]