[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-27 Thread Priest, James (NIH/NIEHS) [C]
Mitchell, I don't know of any Firebug tutorials offhand, I would just Google it and see what turns up. I also had this bookmarked (haven't watched it yet) http://ejohn.org/blog/hacking-digg-with-firebug-and-jquery/ Presented by John Resig: This is an adaptation of a

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-27 Thread Jonathan Sharp
Why simply write bug free code! -js On 7/26/07, cfdvlpr [EMAIL PROTECTED] wrote: Firebug is awesome for debugging your Jquery code using firefox. But, how do you debug problems that occur in IE and IE only?

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-27 Thread Mike Alsup
There is tons of documentation at http://getfirebug.com/ On 7/27/07, Priest, James (NIH/NIEHS) [C] [EMAIL PROTECTED] wrote: Mitchell, I don't know of any Firebug tutorials offhand, I would just Google it and see what turns up. I also had this bookmarked (haven't watched it

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-27 Thread Rick Faircloth
[mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Sharp Sent: Friday, July 27, 2007 10:11 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Are there any particular ways to debug jQuery code? Why simply write bug free code! -js On 7/26/07, cfdvlpr [EMAIL PROTECTED] wrote: Firebug

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Mitchell Waite
Subject: [jQuery] Re: Are there any particular ways to debug jQuery code? -Original Message- From: Mitchell Waite [mailto:[EMAIL PROTECTED] $(#nest).click(function() { alert(got it); $(#nest).fade(slow); I still haven't picked up my

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Josh Nathanson
@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Thursday, July 26, 2007 1:30 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Are there any particular ways to debug jQuery code? Mitchell - if an error occurs in a script, you will see a red x in the lower right

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Jeferson Koslowski
Google it and see what turns up. -- Josh - Original Message - From: Mitchell Waite [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, July 26, 2007 2:11 PM Subject: [jQuery] Re: Are there any particular ways to debug jQuery code? THANK YOU that is super amazing

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Josh Nathanson
Mitchell, a good way to debug jQuery or JS in general is via a tool called Firebug, that is available as an extension for the Firefox browser. In your case, it probably would have said something like fade is not a method of jQuery, which would have immediately helped you diagnose the problem.

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread cfdvlpr
Firebug is awesome for debugging your Jquery code using firefox. But, how do you debug problems that occur in IE and IE only?

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Josh Nathanson
the currently viewed page, and how long they took to download (the Net tab). -- Josh - Original Message - From: Mitchell Waite [EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, July 26, 2007 1:13 PM Subject: [jQuery] Re: Are there any particular ways to debug jQuery code? I

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Priest, James (NIH/NIEHS) [C]
-Original Message- From: Mitchell Waite [mailto:[EMAIL PROTECTED] $(#nest).click(function() { alert(got it); $(#nest).fade(slow); I still haven't picked up my jQuery book again - this weekend! But couldn't your write this

[jQuery] Re: Are there any particular ways to debug jQuery code?

2007-07-26 Thread Mitchell Waite
To: jquery-en@googlegroups.com Subject: [jQuery] Re: Are there any particular ways to debug jQuery code? Mitch, fade() is not a function Try fadeTo, fadeIn, or fadeOut. Check out the api for more info http://jquery.com/api (under F) On 7/26/07, Mitchell Waite [EMAIL PROTECTED] wrote: Noobie