Skip to content

Uncaught TypeError: $.fn.appear.checks[length] is not a function #6

@StevenWillett

Description

@StevenWillett

The error is showing on line 127 for me, but its this code block:

Original (In master Branch, lines 124-128)

//process the queue
    checkAll: function() {
    var length = $.fn.appear.checks.length;
    if (length > 0) while (length--) ($.fn.appear.checks[length])();
},

Updated this block to use:

        //process the queue
        checkAll: function() {
            var length = $.fn.appear.checks.length;
            if (length > 0) while (length--) ($.fn.appear.checks[length])();
            try
            {
                ($.fn.appear.checks[length])();
            }
            catch(e)
            {
            }
        },

but get the same issue even when trying to catch the issue.

Any pointers to a possible solution?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions