PDA

View Full Version : framing question


canadian_legend
01-26-2003, 06:44 PM
Hey everybody. I have a page that loads a certain page into a frame once you click which one you want (http://randominsanity.reallyrules.com/jokes.html)

Is there a way to make it so that you don't have to click anything for one to load. So that as soon as you enter that page, one is already loaded (or being loaded) into the frame/iframe?

I want to know this cause I like how the iframe thing I have works, and I'm going to use it for something else, but it'll only have one page to load into it, so I want it to just automatically put that one there.

Can anyone help me out? (or at least understands what I mean, lol)

ez4me2c3d
01-26-2003, 06:46 PM
here is your code<iframe width="80%" height="65%" name="jokes">
</iframe>and this is the code that you need
<iframe src="page.html" width="80%" height="65%" name="jokes">
</iframe>and now page.html will be there when the page loads

canadian_legend
01-26-2003, 10:17 PM
thanks a ton man!