Skip to content Skip to sidebar Skip to footer

Ie Issue With Jquery And Js

Im trying to write a function that transfer the items from the basket and push it in the cart. the problem I am facing at the moment is that although this code works fine in FF and

Solution 1:

Your script breaks on line 683 with the error:

Object doesn't support this action

This is because item is a reserved keyword in Internet explorer 8 and below, try renaming it to something else OR use the var keyword to locally declare item. This will probably fix it:

var item = {};

Cheers.

Post a Comment for "Ie Issue With Jquery And Js"