I'm new to creating custom object in JavaScript, so it could easily be something simple.

I have these objects:

        function jsonObj(_id,_title,_class,_icon)
        {
            this.attr = new jsonAttrObj(_id,_title,_class);
            this.data = new jsonDataObj(_title,_icon);
            this.children = new Array();
        };

        function jsonAttrObj(_id, _title, _class)
        {
            this.id = _id;
            this.title = _title;
            this.class = _class;
        };

        function jsonDataObj(_title, _icon)
        {
            this.title = _title;
            this.icon = _icon;
        };

I call it using var jsonObject = new jsonObj(id,title,class,icon); all being string vars.

They work fine in Chrome and Firefox, but not IE(8). IE has the error - Expected Identifier.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

You cannot use the reserved keyword 'class' as any variable or property name. Funny thing here--this is one of the few places where IE is getting it right and the rest are not.

link|improve this answer
Doh! I knew it was something so simple :\ Thanks! – Byron Cobb Mar 18 '11 at 11:08
feedback

I think it's the order of your "object" definitions, or your use of the class-keyword that's causing problems..

link|improve this answer
The order of definition is not an issue. Given where the use of the constructors takes place, and JavaScript's hoisting mechanism, it is fine ordered as is. – JAAulde Mar 18 '11 at 11:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.