• I recently updated my theme and am now getting this error:

    Breaking on Jscript runtime error – Object doesn’t support this property or method.

    Referring to the following code:

    //function to decide if mobile or not
    function isMobile(){
    header = $(‘.responsive #header’);
    
    if($(window).width() < settings.switchWidth)
    {
    header.addClass(‘mobile_active’);
    return true;
    }
    else
    {
    header.removeClass(‘mobile_active’);
    return false;
    }
    }

    [Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

    Specifically to the line: header = $(‘.responsive #header’);

    This error is creating a serious problem in IE8. I am very new to developing and do not know how to fix it. Can anyone help please?? It’s holding up my launch. Thank you!!!!

    https://dev.atlasdie.com/

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