samccone
samccone

Reputation: 10926

Issue in Firefox 3.6 with ajax call to PHP

Seems that a site I made for fun does not like to work in firefox 3.6 ... can't really figure out what is causing the issue tho, once i open firebug it works fine...

here is the link http://samsaccone.com/apad_scroller/

any ideas would be appreciated,

Upvotes: 0

Views: 125

Answers (1)

Chandu
Chandu

Reputation: 82903

You have console.log statements @ line# 48 and line# 59 (console.log(spot); and

console.log("set up called");)

console.log is not available when FireBug is not enabled and hence the script fails.

Remove those lines and your page should work fine.

Upvotes: 2

Related Questions