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
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Changing the content of an Iframe from a link outside.

  • 10-08-2005 5:51pm
    #1
    Registered Users, Registered Users 2 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, Registered Users 2 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, Registered Users 2 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