Syntax Error Help

Syntax Error Help

Hello,

 

I keep getting the error message below using IE8 browser. I tried fixing and researching all week with no luck. Any help is much appreciated?

 

Error:

 

Message: Exception thrown and not caught

Line: 3291

Char: 2

Code: 0

URI: http://stoodo.com/components/com_community/assets/joms.jquery.js

 

Line # 3291 error is the second line below ("Syntax error, unrecognized expression: " + msg;)

 

 

 

 

Sizzle.error = function( msg ) {

            throw "Syntax error, unrecognized expression: " + msg;

};

 

var Expr = Sizzle.selectors = {

            order: [ "ID", "NAME", "TAG" ],

            match: {

                        ID: /#((?:[wÀ-￿-]|.)+)/,

                        CLASS: /.((?:[wÀ-￿-]|.)+)/,

                        NAME: /[name=['"]*((?:[wÀ-￿-]|.)+)['"]*]/,

                        ATTR: /[s*((?:[wÀ-￿-]|.)+)s*(?:(S?=)s*(['"]*)(.*?)3|)s*]/,

                        TAG: /^((?:[wÀ-￿*-]|.)+)/,

                        CHILD: /:(only|nth|last|first)-child(?:((even|odd|[dn+-]*)))?/,

                        POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:((d*)))?(?=[^-]|$)/,

                        PSEUDO: /:((?:[wÀ-￿-]|.)+)(?:((['"]?)((?:([^)]+)|[^()]*)+)2))?/

            },

            leftMatch: {},

            attrMap: {

                        "class": "className",

                        "for": "htmlFor"

            },

            attrHandle: {

                        href: function(elem){

                                    return elem.getAttribute("href");

                        }

            },

            relative: {

                        "+": function(checkSet, part){

                                    var isPartStr = typeof part === "string",

                                                isTag = isPartStr && !/W/.test(part),

                                                isPartStrNotTag = isPartStr && !isTag;

 

                                    if ( isTag ) {

                                                part = part.toLowerCase();

                                    }

 

                                    for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) {

                                                if ( (elem = checkSet[i]) ) {

                                                            while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {}

 

                                                            checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ?

                                                                        elem || false :

                                                                        elem === part;

                                                }

                                    }

 

                                    if ( isPartStrNotTag ) {

                                                Sizzle.filter( part, checkSet, true );

                                    }