[jQuery] Re: Why is IE messing with my mind?

2007-04-24 Thread Justin Carter
On 4/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi, On PC IE (v. 7.0) only, I'm getting a JS error on line 9, saying "Error: Expected identifier string, or number." Here's the code left: 0, },// line 9 Perhaps an un

[jQuery] Re: Why is IE messing with my mind?

2007-04-24 Thread Stuart
Try removing the comma after "left: 0" on line 8. Firefox doesn't seem to mind the trailing comma but IE completely breaks. You see this with mostly with literal notation. On Apr 24, 11:06 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Hi, > > On PC IE (v. 7.0) only, I'm getting a JS error

[jQuery] Re: Why is IE messing with my mind?

2007-04-24 Thread Ⓙⓐⓚⓔ
left: 0, the trailing comma! that trick only works in firefox, drop the comma! On 4/24/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi, On PC IE (v. 7.0) only, I'm getting a JS error on line 9, saying "Error: Expected identifier string, or number." Here's the