Results 1 to 3 of 3

Thread: Translucent slideshow Script + HTTPS

  1. #1
    Join Date
    Aug 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Translucent slideshow Script + HTTPS

    1) Script Title: Translucent slideshow Script

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...ucentslide.htm

    3) Describe problem: I've had the sript working for aa while, but have just noticed it dosen't load at al when accessed via HTTPS.

    Here is a link both via HTTP and HTTPS
    Working:
    http://www.confer.uk.com/

    Not working
    https://www.confer.uk.com/

    Can anyone offer any advise please

    Thanks
    Rino
    Last edited by Beverleyh; 08-19-2013 at 08:48 PM. Reason: Formatting

  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

    Depends upon the browser. In IE 10, as perhaps others, the http: protocol content of the third party hosted jQuery is a problem:

    Code:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    This is easily solved by changing to:

    Code:
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
    Since Google hosts both http: and https: versions, and because the browser will fill in a missing protocol with the protocol of the page, using the src attribute with no protocol will work for either page.

    There could also be other problems, but in all likelihood that will take care of it.

    The browser cache may need to be cleared and/or the page refreshed to see changes.



    I also notice that there's a similar and unrelated issue:

    Code:
    <script type="text/javascript" src="http://www.google.com/cse/brand?form=cse-search-box&lang=en"></script>
    This probably has no effect upon the slideshow, but upon whatever code uses the code linked to there. Although I don't know for sure in this particular case, the solution is probably the same.
    - John
    ________________________

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

  3. #3
    Join Date
    Aug 2013
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    John you're an absolute hero! I'd have never debugged that.

    Many thanks!
    Rino

Similar Threads

  1. Translucent Slideshow Script
    By Johnt in forum Dynamic Drive scripts help
    Replies: 3
    Last Post: 01-06-2011, 02:10 AM
  2. Translucent slideshow Script
    By kmyousafzai in forum Java
    Replies: 0
    Last Post: 03-28-2008, 04:12 PM
  3. Help with translucent slideshow script, please
    By kalew in forum Dynamic Drive scripts help
    Replies: 4
    Last Post: 02-18-2006, 03:13 PM
  4. Translucent slideshow Script
    By courtanee in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 06-15-2005, 02:29 AM
  5. Translucent slideshow Script
    By boibob in forum Dynamic Drive scripts help
    Replies: 2
    Last Post: 04-13-2005, 12:00 AM

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
  •