Lets say I want to show
http://www.whatever.com/longWebPage.html
and
http://www.someOtherDomain.com/alsoALongPage.html
and
http://www.ranOutOfNames.com/youGetThePoint.html

All on one page with one scrollbar.

I want it to seem like I copy pasted all three sites one after another on my page.
I tried using frames but that splits up the window into parts. What I want is one long continuous website with all of these frames/iframes/whatever displayed continuously one after another with one scrollbar

Any ideas?

Recommended Answers

All 2 Replies

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta name="generator" content=
    "HTML Tidy for Windows (vers 25 March 2009), see www.w3.org">
    <title></title>
  </head>
  <body>
    <div>
        <iframe scrolling="no" frameborder="0" height="800px" width="100%" src="http://www.bing.com"></iframe> 
	<iframe scrolling="no" frameborder="0" height="400px" width="100%" src="http://www.ask.com"></iframe>
	<iframe scrolling="no" frameborder="0" height="4000px" width="100%" src="http://www.yahoo.com"></iframe>
    </div>
  </body>
</html>

fxm, I see what your trying to do, the thing is I have no idea how big each page is until the user clicks submit. I was thinking I would need to resize the iframes after it loaded. Is there a way to do that?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.