Results 1 to 2 of 2

Thread: Using Javascript with Iframe

  1. #1
    Join Date
    Apr 2015
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Using Javascript with Iframe

    Hi...

    I have a traffic echange which works well, what I want to do is this. When a user logs in he/she is taken to n oto or advertising webpage, the webpage is timed at 20 seconds when he/she will be redirected to their member area.

    Javascript works ok/timer is ok/redirect is ok. but how do I show the actual OTO page/Advertising page?

    I have tried using Iframes but all that happens is that the script shows twice.
    Click image for larger version. 

Name:	Ashampoo_Snap_2015.04.11_12h51m30s_002_.jpg 
Views:	218 
Size:	40.7 KB 
ID:	5658

    Can anyone help?

  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

    There are cross site restrictions on javascript. So, if one page is on one site, and the other is on another, they cannot communicate via javascript. That might play a role, as not even the location.href of an iframe may be set to off site resources in certain cases. You can always set its src property though. The href is is a property of an iframe as a window object (window.frames[0].href), the src is a property of the iframe as an element on the page (document.getElementById('myIframe').src).

    Many off site resources refuse to allow your site to put their content in a frame/iframe or object tag. There's no way around that except to get the other site to change its policy.

    And/or there may just be some other sort of problem.

    If you want more help, please post a link to the page on your site that shows the problem.
    - John
    ________________________

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

Similar Threads

  1. How to fix incorrect javascript in iframe
    By mvogel in forum Looking for such a script or service
    Replies: 2
    Last Post: 03-30-2008, 03:48 PM
  2. Replies: 1
    Last Post: 06-01-2007, 02:42 PM
  3. iframe, table & javascript.....Help me!!!!!
    By swordfish in forum JavaScript
    Replies: 1
    Last Post: 04-17-2005, 02:05 PM
  4. Javascript (Iframe)
    By hldr in forum JavaScript
    Replies: 3
    Last Post: 03-26-2005, 01:42 AM
  5. Table iframe +javascript
    By irene in forum JavaScript
    Replies: 0
    Last Post: 02-05-2005, 08:22 PM

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
  •