views:

375

answers:

3

This site has a script that works in all browsers I tested but Chrome, which I think is strange because it is usually IE that acts up. What should happen is that there is a dynamic tour through the store, in Chrome only the picture is seen, it seems like none of the script triggered.

The error console says

Uncaught TypeError: Cannot call method 'toLowerCase' of undefined
Uncaught TypeError: Object #<an Object> has no method 'set'

however I don't know what to do with this information. Any ideas? I am using Chrome 4.0.249.78

again here is the link

+4  A: 

I'm not sure about the first line, but the second one is coming out of mootools (line 23), and is actually being reported by FireFox as well. If memory serves it's because of incompatibilities between mootools and jquery.

Stephen Wrighton
it was because of mootools thanks!
Moak
A: 

It is because of MooTools, but for anyone who may be new to these issues, you will need to add the jQuery.noConflict(); to your javascript. http://api.jquery.com/jQuery.noConflict/

LostInQuery