Results 1 to 5 of 5

Thread: Random iFrame problem

  1. #1
    Join Date
    Aug 2006
    Posts
    79
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Random iFrame problem

    1) Script Title:
    Random Iframe Content
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...ndomiframe.htm
    3) Describe problem:
    Is there a possible way to show something else if random iframe doesn't load?

  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

    Due to what?

    If it is due to there being no javascript active in the browser, this placed just before or after the script would do it:

    HTML Code:
    <noscript>alternate content here</noscript>
    If it is due to the browser not supporting the standards required by the script (additions red):

    Code:
    if (ie||dom)
    document.write('<iframe id="dynstuff" src="" '+iframeprops+'></iframe>')
    else
    document.write('alternate content here');
    If it is due to the random page being unavailable, that is really your responsibility. Just make sure that all pages listed are available to the script.
    - John
    ________________________

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

  3. #3
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

    Default

    the example in DD does not do what it says.

  4. #4
    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

    Quote Originally Posted by chechu View Post
    the example in DD does not do what it says.
    In what way? In which browser(s)?
    - John
    ________________________

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

  5. #5
    Join Date
    Aug 2006
    Posts
    79
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks, works perfectly.

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
  •