Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Changing the content of an Iframe from a link outside.

Options
  • 10-08-2005 6:51pm
    #1
    Registered Users Posts: 1,747 ✭✭✭


    I am creating an admin section for a site: http://www.dgi.ie/admin/
    What i want is that when a user clicks on a link such as "Add/edit blog entry"
    it pops open a new window as it currently does and also changes the content of the Iframe to a particular URL where the instructions for that particular link are stored.

    Is it a job for Javascript?


Comments

  • Registered Users Posts: 1,169 ✭✭✭dangerman


    yep.

    you just need to assign an id to the iframe. eg. id="iframe1"

    then in the function you call when on the onclick of that link:

    document.getElementById('iframe1').src = "http://mynewurl.com/";


  • Registered Users Posts: 1,747 ✭✭✭Figment


    Thanks for that. Turns out i didn't need Java script at all.

    A simple name="IFrame1" on the Iframe and then target"Iframe1" in the link.


Advertisement