[Moo] Issues With IE - Assing Object Values to Variables

4 messages Options
Embed this post
Permalink
Merrick Christensen

[Moo] Issues With IE - Assing Object Values to Variables

Reply Threaded More More options
Print post
Permalink

http://merrickchristensen.com/sandbox/gabe/

Works beautifully in Safari and Firefox as usual. Been debugging in IE
all night. And it seems the issue lies assigning var values from
object values. Thanks for any help in advance.
Sanford Whiteman [Mobile]

[Moo] Re: Issues With IE - Assing Object Values to Variables

Reply Threaded More More options
Print post
Permalink

Trailing comma....

Dimitar Christoff

[Moo] Re: Issues With IE - Assing Object Values to Variables

Reply Threaded More More options
Print post
Permalink

yeah it is a trailing comma but not in your js - in the json.

{"graph":
2 [
3 {
4 "name" : "Jonas Bros",
5 "key" : "4",
6 "productivity" : "93"
7 },{
8 "name" : "Miley Cyrus",
9 "key" : "3",
10 "productivity" : "71"
11 },{
12 "name" : "Gabe",
13 "key" : "2",
14 "productivity" : "57"
15 },{
16 "name" : "Merrick",
17 "key" : "1",
18 "productivity" : "16"
19 },
20 ]
21}


line 19 after }

Regards,
--
Dimitar Christoff <[hidden email]> - http://fragged.org/

Merrick Christensen

[Moo] Re: Issues With IE - Assing Object Values to Variables

Reply Threaded More More options
Print post
Permalink

You guys rock. Can't thank you enough. No reason my JSLint wasn't
showing it. Thanks!