Log in

View Full Version : frame/textfield to display contents



sozz
07-28-2006, 05:26 PM
Hey guys.
im looking for a code that makes a field on the page where the contents can displayed. Like the ones where you get to scroll on the page instead of using the browsers schrollbar.
Can anyone help me?

BLiZZaRD
07-28-2006, 08:32 PM
in your frames (shudder) when you call them from the index.html:



<frame src="left.html" name="leftside" scrolling=yes>
<frame src="right.html" name="rightside">


or top/bottom... which ever you are using.

mburt
07-29-2006, 12:39 AM
You could use an <iframe> tag

also..
An easy way to access the src is to give it an id:

<iframe id="inpage"></iframe>
<br><a href="#" onclick="inpage.window.location.href = 'http://www.mamma.com/'">Mamma.com</a>