• This error appears at: (line 117, char 23)

    return $( ‘<p/>’, { class: _class.join( ‘ ‘ ) } ).text( message );

    The reason is that “class” is a reserved word. The fix is to put ‘class’ (with ‘):

    return $( ‘<p/>’, { ‘class’ : _class.join( ‘ ‘ ) } ).text( message );

    https://wordpress.org/plugins/mad-mimi/

  • The topic ‘IE8 JS Error: Expected identifier, string or number (including fix)’ is closed to new replies.