Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

Changing the content of an Iframe from a link outside.

  • 10-08-2005 06: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