On Aug 13, 2007, at 8:40 AM, WebolizeR wrote:
var myobject = {property: "value",} // fail in IEif IE cannot handle object properties how can we configure that, is there another method to configure the plugin which I donot know?
It *can* handle object properties. You just have to remove the trailing comma, as Mike and José suggested:
var myobject = {property: "value"} // will work in IE
--Karl

