[jQuery] Re: frustrating IE problem

2009-08-18 Thread ninjagowoowoo
turns out it was indeed the CSS statement. I'm not exactly sure what the specific issue was, but I believe it was my varying css styles that didn't carry over. EG: I had backgroundBottom:none on some items, styles on some, and simply 0px on others. Streamlining it and keeping the styles linear hel

[jQuery] Re: frustrating IE problem

2009-08-17 Thread Michael Geary
If you double-click each of the entries in the call stack it will go to the code for that function call. Down near the bottom of the list, one of them points to this code: $clicked.animate({ opacity: 1, "borderBottom":"5px solid #0099CC" }, 300 ); I don't know off the to

[jQuery] Re: frustrating IE problem

2009-08-17 Thread ninjagowoowoo
Right on, I figured that may come up but I was hoping it was just some silly syntax error. The error now breaks at line 3909 (Same error [invalid argument]) on jquery 1.3.2 uncompressed. The Call Stack simply says "JScript anonymous function". It should also be noted that the above code isn't a sn

[jQuery] Re: frustrating IE problem

2009-08-17 Thread Michael Geary
1. Use the uncompressed version of jQuery instead of the minified one (i.e. jquery.js instead of jquery.min.js). 2. Load your page in IE8. 3. Open the IE8 debugger (F12 to open it). 4. Select the Script tab and make sure Break on Error is turned on (the pause/X button should look like it's push

[jQuery] Re: frustrating IE problem

2009-08-17 Thread ninjagowoowoo
Line: 19 Error: Invalid argument. on the jquery 1.3.2 js file On Aug 17, 7:57 pm, brian wrote: > What's the reported error? > > On Mon, Aug 17, 2009 at 10:16 PM, ninjagowoowoo > wrote: > > > I've been having issues with my jquery code in IE. I've tried various > > debugging methods but they t

[jQuery] Re: frustrating IE problem

2009-08-17 Thread brian
What's the reported error? On Mon, Aug 17, 2009 at 10:16 PM, ninjagowoowoo wrote: > > I've been having issues with my jquery code in IE. I've tried various > debugging methods but they tend to point into the actual jquery js and > not the code I've written. For what it's worth, the debuggers tell