• Resolved kbellcpa

    (@kbellcpa)


    I have the following exception on my site and need help to fix it:

    SCRIPT5007: Unable to get property ‘value’ of undefined or null reference

    function forward_0() {
        var hidden_id = 'acx_hidden_id_' + 0;
        var vedio_status = document.getElementById(hidden_id).value;
        if (vedio_status != "play") {
            cur_0.animate({
                opacity: 0
            }, 1000).addClass('inactive').removeClass('active');
    
            if (cur_0.hasClass('last'))
                cur_0 = jQuery('.acx_ppt_0 li:first');
            else
                cur_0 = cur_0.next();
            cur_0.animate({
                opacity: 1
            }, 1000).addClass('active').removeClass('inactive');
        }
Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Hi there!

    What happens if you add:

    console.log( vedio_status );

    After you declare the variable? I have a feeling that it will yield undefined in your developer tool’s console.

    Curious as to what value you are trying to get?

    Thread Starter kbellcpa

    (@kbellcpa)

    Thanks for getting back to me. I tried to enter the code above, but nothing happened. I found out this was coming from a slideshow plugin I added. I deleted the plugin and went with another. No more errors.

    Moderator Jose Castaneda

    (@jcastaneda)

    THEME COFFEE MONKEY

    Glad to see you figured out what was causing it?

    Out of curiosity what plugin was it?

    Thread Starter kbellcpa

    (@kbellcpa)

    Simple Slideshow Manager by Acruax Technologies. I really liked the product, but didn’t want the error. Not sure if it was a conflict with another plugin or not. If you find out, please let me know.

    Karen

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Site Exception’ is closed to new replies.