Results 1 to 2 of 2

Thread: Navigating iframes

  1. #1
    Join Date
    Jun 2014
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Navigating iframes

    I know vb.net language but I'm trying to learn HTML code and trying to work something out.

    I have 2 iframes and i want to be able to click a button on Iframe1 and make Iframe2 navigate to a set URL.

    Could someone possibly give me some ideas how to make this possible??

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Top page:

    Code:
    <!DOCTYPE html>
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    
    </head>
    <body>
    <iframe name="iframe1" src="about:blank" width="300" height="300" scrolling="auto" frameborder="1"></iframe>
    <iframe name="iframe2" src="mypage.htm" width="300" height="300" scrolling="auto" frameborder="1"></iframe>
    </body>
    </html>
    mypage.htm:

    Code:
    <!DOCTYPE html>
    <html>
    <head>
    <title></title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    
    </head>
    <body>
    <a href="http://www.dynamicdrive.com/" target="iframe1">Dynamic Drive</a>
    </body>
    </html>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Similar Threads

  1. Issue with IE only when navigating page
    By Defender90 in forum HTML
    Replies: 14
    Last Post: 07-20-2012, 04:48 PM
  2. Trouble navigating directory structure
    By JasonDFR in forum PHP
    Replies: 5
    Last Post: 04-02-2009, 04:41 PM
  3. Select box for navigating, sending emails, etc.
    By molendijk in forum Submit a DHTML or CSS code
    Replies: 3
    Last Post: 04-13-2008, 09:11 PM
  4. Navigating Back problem
    By cblake843 in forum JavaScript
    Replies: 0
    Last Post: 04-25-2006, 08:06 PM
  5. Navigating through Site directory...
    By almarenan in forum JavaScript
    Replies: 0
    Last Post: 11-20-2004, 05:48 AM

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
  •