html help

jeebus19

Member
Apr 26, 2001
99
0
0
I need to have a page load in the back ground but i dont know how i would go about doing this ? does anyone know what to do to make this happen ????
 

payjo

Senior member
Sep 6, 2001
267
0
0
This will open a popup window when the page loads:

<SCRIPT LANGUAGE="JavaScript">
function newwinlink() {
newwin = window.open("HTML_FILE.htm","Title of Page","height=400,width=550,resizable")
}
</SCRIPT>

call the newwinlink function:

<body onload="newwinlink()">