cocag
12-11-2009, 06:12 AM
Howdy,
I know this is a basic ques, but thats what us newbies do <g>
How come this won't load the large image "AUS_large.jpg" after the page "Bottom1.html" loads in the bottom frame?
INDEX.HTML
<frameset rows="200,200" frameborder="YES" framespacing="0">
<frame src="top.html" name="topFrame" id="topFrame">
<frame src="bottom.html" name="bottomFrame" id="bottomFrame">
</frameset>
TOP.HTML
<script language="JavaScript">
function ShowPic(){
parent.bottomFrame.location.href ="bottom1.html"
parent.bottomFrame.pic.src="AUS_large.jpg"}
</script>
</head>
<body>
<img src="AUS_small.JPG"
onclick="ShowPic()">
</body>
BOTTOM.HTML
<body>
nothing here
</body>
BOTTOM1.HTML
<body>
<img ID="pic" src="AUS_small.JPG">
</body>
Thankyou in advance. ;)
I know this is a basic ques, but thats what us newbies do <g>
How come this won't load the large image "AUS_large.jpg" after the page "Bottom1.html" loads in the bottom frame?
INDEX.HTML
<frameset rows="200,200" frameborder="YES" framespacing="0">
<frame src="top.html" name="topFrame" id="topFrame">
<frame src="bottom.html" name="bottomFrame" id="bottomFrame">
</frameset>
TOP.HTML
<script language="JavaScript">
function ShowPic(){
parent.bottomFrame.location.href ="bottom1.html"
parent.bottomFrame.pic.src="AUS_large.jpg"}
</script>
</head>
<body>
<img src="AUS_small.JPG"
onclick="ShowPic()">
</body>
BOTTOM.HTML
<body>
nothing here
</body>
BOTTOM1.HTML
<body>
<img ID="pic" src="AUS_small.JPG">
</body>
Thankyou in advance. ;)