I'm currently developing a bookstore website and adapting myStore template. When I try to load the page with IE6 or IE7 it shows that there is an error:
Line: 298
Char: 2
Error: Object doesn't support this property or method
Code: 0
URL: http://eugrimas.lt/v2/index.php
Could you check it out and give me a hint what could be wrong?
I believe this error is from gk.script.js and this function:
- Code: Select all
document.body.addEvent("click", function(e){
if(login && !login_over){
login_fx.start(0);
hlogin_fx.start(0);
login = false;
$('btn_login').removeClass("popup");
}
if(register && !register_over){
register_fx.start(0);
hregister_fx.start(0);
register = false;
$('btn_register').removeClass("popup");
}
if(cart && !cart_over){
cart_fx.start(0);
hcart_fx.start(0);
cart = false;
$('btn_cart').removeClass("popup");
}
});