need help for javascripting and html style
Hi everybody!
Is there someone know how to load a page with frame window.open() javascript method because my main frame is loaded but not frame contents ??
And another question : i have changed the properties of scrollbars but is it visible only on my station ! not by other persons on the network...
thanx for help !
Mark Hensler posted this at 04:58 — 1st December 2000.
He has: 4,048 posts
Joined: Aug 2000
Hey katzieu,
Welcome to TWF!
about the window.open(), can we see your code? I'm not quite understanding what's going on. (frame loads without content?)
scrollbar viewing, hmmm... is javascript enabled on the other machines?
Mark Hensler
If there is no answer on Google, then there is no question.
katzieu posted this at 08:08 — 1st December 2000.
They have: 2 posts
Joined: Nov 2000
My homepage is 'index.html' and I would load it with 'start.html'.
When I load 'start', 'index' is loaded but the frames are empty ("404 - No page found error"), in my mind I should force the frame loading but doesn't work ....
--start.html ------------------------------------------
<script language="JavaScript">
</script>
--index.html -----------------------------------------------
GOLD® - Qualification
-----------------------------------------------------------
Now for the scrollbars I'm using
BODY {
SCROLLBAR-FACE-COLOR: #ffffff; SCROLLBAR-HIGHLIGHT-COLOR: #ffffff; SCROLLBAR-SHADOW-COLOR: #003399; SCROLLBAR-3DLIGHT-COLOR: #003399; SCROLLBAR-ARROW-COLOR: #003399; SCROLLBAR-TRACK-COLOR: #ffffff; SCROLLBAR-DARKSHADOW-COLOR: #ffffff
}
and javascript is enabled on the other machines !
Sorry of length and my poor english, THANX
NSS posted this at 12:02 — 1st December 2000.
They have: 488 posts
Joined: Feb 2000
I am not sure what you are trying to accomplish but if it's only to open a NEW WINDOW then add this script to your start.html page:
new window
<script>
</script>
1)You can open a new window with the script using open()
This allows you to control the window's content and features
(size,scrollbar, etc.) The only thing you can't control is the new window's location on the screen.
2)var myWin=
Declare a variable. You can use it to store a reference to the new window.
3)open() to tell Javascript that that you want to open a new window
4)"index.html"
Within quotation marks, the location of the HTML file for the new window.
5),"picture"
after the comma, specify a name if you target the new window with links on other pages.
6),"status=no,
After the comma, specify the features for you new window in quotation marks. Type = no after the name of a window features you don't want. Type =yes after one you do. If you don't specify any features it will all default to yes.
BTW, I noticed that you use "BLANK.html" in your index.html page (Capital), try to change it to "blank.html" and also change the actual page "BLANK.html" before uploading (FTP).
Hope this helps
[Edited by NSS on Dec. 01, 2000 at 07:16 AM]
Mark Hensler posted this at 03:52 — 2nd December 2000.
He has: 4,048 posts
Joined: Aug 2000
well, at the moment all I can think off is the path/filenames of the scr's for the frames.
just make sure that the fils are in the same directory as 'index.html' and that the caps are right.
just curious, what page is that in? is it in 'index.html'? I don't that that would bork this up, but if it's in there, try without it, ya never know...
scrollbar stuff... are you all using the same browser? different browsers and different versions support different CSS
Mark Hensler
If there is no answer on Google, then there is no question.
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.