Trying to figure out what is causing the javascript errors on this page with no luck. Also it is preventing the other javascripts from executing, i.e. the tabs not being formatted, add to cart button not working. Any feedback is appreciated, thanks
-
element.attachEvent("on" + name, wrapper). This is not a function. You are having this problemAwais Qarni– Awais Qarni2011-03-14 12:33:53 +00:00Commented Mar 14, 2011 at 12:33
-
3Your are trying to "attachEvent" on controls through your javascript that is causing the errors, i would recommend you to use the Jquery instead of simple JS, that would be more effective.moreover you can use IE8 built-in script debugger to get the error details.Furqan Hameedi– Furqan Hameedi2011-03-14 12:34:38 +00:00Commented Mar 14, 2011 at 12:34
-
If you are using FireFox I suggest you get FireBug it has a great Javascript Debugger.atrljoe– atrljoe2011-03-14 12:36:29 +00:00Commented Mar 14, 2011 at 12:36
Add a comment
|
2 Answers
Your prototype.js has some problem, try first verify the form id.
error: productAddToCartForm is undefined in prototype.js
1 Comment
Joe Riggs
Thanks for the feedback, got me going in the right direction - prototype.js was conflicting with a jquery slider I installed - noConflict will fix this, thanks!