Tracing jQuery Error

Tracing jQuery Error

Hi!

I'm having a hard time tracing and error that I'm seeing in Firefox's Error Console:

Timestamp: 2/8/13 7:38:48 PM
Error: Error: Syntax error, unrecognized expression: a[href^=/]
Source File: http://ccchapel.dev/CMSTemplates/_CCC/_scripts/jQuery/jquery-1.9.1.js
Line: 4421




I used the uncompressed version of jQuery 1.9.1 to try and trace the error and found this (line 2 is 4421):
  1. Sizzle.error = function( msg ) {
  2.       throw new Error( "Syntax error, unrecognized expression: " + msg );
  3. };

What's funny is that I don't use the ^= expression except in one place and commenting that line doesn't stop the error.

It seems to be happening whenever you click anywhere.

Anyway, I wasn't worried about the error until now because I'm having difficulty with a new function I'm writing that works fine in jsFiddle, but doesn't complete executing and also doesn't throw and error that's logged in the console.

If anyone has any advice on what to do to try and figure this all out, I'd be very appreciative.

Thanks!

-Eric