Firefox throws error - regular expression too complex

3.1k Views Asked by At

I'm doing a load() on a page using Jquery, using Jquery Minified 1.3.2 and in ff4, it's telling me regular expression is too complex, and not completing the load. Works with no errors at all in chrome. Any idea what's going on? Thanks a lot guys!

1

There are 1 best solutions below

1
On BEST ANSWER

Just ran into the same error in FF4 (NOT in FF3.6). We're running jQuery 1.4.4.

For us, the issue was a bad jQuery selector. Namely:

$("#top *[contenteditable=true")

When it should have been:

$("#top *[contenteditable=true]")

That missing right bracket fixed it. I recommend double-checking your selectors.