<iframe src="location of iframe" width="width of iframe" height="height of iframe" scrollbars="Use scrollbars or not"></iframe>
<!-- ... -->
<iframe src="page2" width="x" height="x"></iframe>
<!-- ... -->
<frameset rows="20%, 80%">
<frame src="page3">
<frame src="pageyouframe">
</frameset>
<a href="index.html">Home</a>
HELP ME plz im in desparate need of help
that wasnt me that was the code i used and u dont click on the radio tab theres a drop down menu when i highlight it click timetable on that.
wats the right iframe and how do i add it?
this si the code ive got: <iframe src=http://www.ibobba.site11.com/housekeepingguy/staff/showtimetable.php width="700" height="800"></iframe>
<iframe src="http://www.ibobba.site11.com/housekeepingguy/staff/showtimetable.php" width="700" height="800"></iframe>
where is the < i cannot find it in the code2 things: 1, I see now why the dropdown isn't working. You are assuming javascript is enabled, which on my browser it was blocked.
2, you don't have a <, you have < which is the html character code for a <, but it will not actually process like a <. You need to replace the < with an actual < in the html code.
<iframe id="introfram" src="introfram.html" style="position:absolute;left:250;top:150;" width="500" height="200" scrolling="no" style="border: #000000 1px solid;"></iframe>
<!-- SCROLLER CONTENT STARTS HERE -->
<Div class="welcometext">
<p> What you want to scroll in your IFRAME.
</p>
</div>
<!-- SCROLLER CONTENT ENDS HERE -->
<script language="JavaScript" type="text/javascript">
<!-- HIDE CODE
var scrollspeed = 1 // SET SCROLLER SPEED 1 = SLOWEST
var startdelay = 2 // START SCROLLING DELAY IN SECONDS
var nextdelay = 1 // SECOND SCROLL DELAY IN SECONDS 0 = QUICKEST
var topspace = "2px" // TOP SPACING FIRST TIME SCROLLING
var frameheight = "200px" // IF YOU RESIZE THE WINDOW EDIT THIS HEIGHT TO MATCH
current = (scrollspeed)
function NewsScrollStart(){
marqueeheight=document.all? parent.document.all.introfram.height : parent.document.getElementById("introfram").getAttribute("height")
dataobj=document.all? document.all.NewsDiv : document.getElementById("NewsDiv")
dataobj.style.top=topspace
AreaHeight=dataobj.offsetHeight
setTimeout("ScrollNewsDiv()",( startdelay * 1000 ))
}
function ScrollNewsDiv(){
dataobj.style.top=parseInt(dataobj.style.top)-(scrollspeed)
if (parseInt(dataobj.style.top)<AreaHeight*(-1)) {
dataobj.style.top=frameheight
setTimeout("ScrollNewsDiv()",( nextdelay * 1000 ))
}
else {
setTimeout("ScrollNewsDiv()",30)
}
}
window.onload=NewsScrollStart
// END HIDE CODE -->
</script>