Help with Cycle Image Carousel not displaying images
Last Post 02/26/2018 5:22 PM by peter. 4 Replies.
Author Messages Resolved
Dan Rothschild
Nuke Ace
Nuke Ace
Posts:47


--
02/04/2013 8:38 AM
    Hi,
    I have a Cycle Image Carousel on a DNN 5.5 website that just stopped working suddenly? Not sure why, maybe jquery conflict?

    The site is here:
    http://www.childrensschoolofballet.com

    and the carousel is the top right image of the young people with the hoppy horse.

    Any ideas how to go about diagnosing the problem?

    Thanks in advance,
    Dan
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    02/04/2013 10:05 AM
    Dan,

    Open up the Console in Chrome and you'll see a couple of errors. The first refers to the Cycle plugin.

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    Joseph Craig
    DNN MVP
    Posts:11667


    --
    02/04/2013 10:25 AM
    Here's the real answer ...


    Uncaught TypeError: Cannot read property 'msie' of undefined
    If you're using the latest hosted version of jQuery in your DNN install (http://ajax.googleapis.com/ajax/lib...y.min.js), you might have noticed some JavaScript problems right around January 15, 2013; mainly Admin control panel not working property.

    As we went on to investigate, we've noticed an "Uncaught TypeError: Cannot read property 'msie' of undefined" error message in our browser console.

    msie is the flag on the jQuery.browser property, which was deprecated since version 1.3 and was removed in jQuery 1.9.0.

    The easy fix was to revert back to jQuery 1.8.3; however the real fix would be removing all the references to jQuery.browser property in the code.

    Credit to: http://www.nwds-ak.com/WebResources...sieof.aspx

    Joe Craig, Patapsco Research Group
    Complete DNN Support
    Dan Rothschild
    Nuke Ace
    Nuke Ace
    Posts:47


    --
    02/04/2013 1:44 PM
    Yup, that did it. Just had to remove the jquery reference in my skin and know all is right in the world.

    Thanks again, Joe.
    peter
    Nuke Active Member
    Nuke Active Member
    Posts:24


    --
    02/26/2018 5:22 PM
    I had the same problem with the Will Strohl Content Slider after upgrading to DNN 9.1
    The above answers helped and pointed me to finding how to replace the code. I found a solution in stackOverflow.
    The question was "browser.msie error after update to jQuery 1.9.1" - SpYk3HH offered the code for a plugin to reproduce the function of jQuery.browser

    I inserted the code at the head of the .CSS file and it has appeared to fix the problem.
    May not be the ideal solution but it is a good place to start.
    (n.b. there is a little bit of testing code at the end which needs to be commented)


    ---