Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: Browser 'back' button changes Conveyor Slideshow behaviour

  1. #11
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    It's probably due to the iframe said script writes. I don't know if an invisible iframe would work, though, if the problem was with rendering. Try:
    Code:
    <iframe src="http://www.google.com/" style="width:0;height:0;border-style:none;"></iframe>
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  2. #12
    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 Twey
    It's probably due to the iframe said script writes. I don't know if an invisible iframe would work, though, if the problem was with rendering. Try:
    Code:
    <iframe src="http://www.google.com/" style="width:0;height:0;border-style:none;"></iframe>
    If that works, try the less intensive:


    HTML Code:
    <iframe src="" style="width:0;height:0;border-style:none;"></iframe>
    You can even give it dimensions and set its visibility:hidden; in the style, if need be:

    HTML Code:
    <iframe src="" style="width:10px;height:300px;visibility:hidden;"></iframe>
    - John
    ________________________

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

  3. #13
    Join Date
    Jul 2005
    Posts
    39
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default that works!

    Twey and jscheuer1 - you guys are brilliant!

    All your fixes work! The bug disappeared!

    Many many thanks for your help and advice!

    (The "Twey-jscheuer1 hack for Safari"!)

  4. #14
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    If they all work, the preferred one is:
    Code:
    <iframe src="" style="width:0;height:0;border-style:none;display:none;"></iframe>
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  5. #15
    Join Date
    Jul 2005
    Posts
    39
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Twey
    If they all work, the preferred one is:
    Code:
    <iframe src="" style="width:0;height:0;border-style:none;display:none;"></iframe>
    Actually that does not work. Using that, the bug reappears. However, this works:

    Code:
    <iframe src="" style="width:1px;height:1px;visibility:hidden;"></iframe>
    ..which is good enough for me! Thanks again!

  6. #16
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Interesting. Does it work if you use a div instead of an iframe?
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  7. #17
    Join Date
    Jul 2005
    Posts
    39
    Thanks
    3
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Twey
    Interesting. Does it work if you use a div instead of an iframe?
    No. It seems to need the "src=" part.

  8. #18
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    OK, I get it now.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

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
  •