Link to home
Start Free TrialLog in
Avatar of YoungBonzi
YoungBonziFlag for United States of America

asked on

Loading Seperate Page in a DIV

Hello,

I'm trying to load another "frame" in a div tag. Is there anyway to do this without using javascript?

For example, I have page1.htm:

<html>
<p>this is page 1</p>

<div>in this div I would like to display the contents of page2.htm</div>
</html>
---------------------------
page2.htm:
<p>hello</p>


Thank you in advance for helping!
ASKER CERTIFIED SOLUTION
Avatar of b0lsc0tt
b0lsc0tt
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of YoungBonzi

ASKER

Thanks b0lsc0tt, but the page I'm editing only allows div tags. I wish I were allowed to use iframs =/
Wow!  Sorry can't help with that.  As far as I know there is no way you could do it even with a client side script.  The script would have to manually fill the div with the contents of the second page.  There is no src attribute in the div tag that would let you load a seperate page.  Another expert may prove me wrong or think of something I can't think of now so I am interested to see what comments you get.  If you can't use iframes then is javascript even an option?

You could easily do this on the server side if that is an option.  Server side script languages, like ASP, PHP, or Perl, will open a file and then you can stream it contents in to the div tag.  The HTML code would not show any sign that 2 pages were used.
No, I'm trying to mess around in MySpace...they won't let me use Javascript or anything like that...I'm hoping someone knows a way to get around the limitations.
Thanks!  I wish I could have helped you get it going but I'm glad that you found my information helpful enough to accept.  Good luck with the rest of the project and working around the limitations of myspace.

bol