Results 1 to 2 of 2

Thread: Showing an external site inside mine...

  1. #1
    Join Date
    Aug 2008
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Showing an external site inside mine...

    I need a code that will make a .html / .htm file appear inside another one with scroll bars. Something like this without the select all. A horizontal scroll bar would also be nice.


    From one of the pages on the site



    So if it can look something like the above that would be nice.
    Thanks for all your help.

  2. #2
    Join Date
    Jan 2006
    Location
    Ft. Smith, AR
    Posts
    795
    Thanks
    57
    Thanked 129 Times in 116 Posts

    Default

    What you're thinking of is called an "IFRAME", you could also use "AJAX", but an IFRAME would probably be your easiest option if you are new to code. Here is an example of how it would look, just paste the url of the site you want to display in place of the "http://www.yoursite.com/somepage.html"

    Code:
    <iframe src="http://www.yoursite.com/somepage.html" frameborder="0" scrolling="auto" height="500px" width="500px"></iframe>
    --------------------------------------------------
    Reviews, Interviews, Tutorials, and STUFF
    --------------------------------------------------
    Home of the SexyBookmarks WordPress plugin

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •