[jQuery] Re: Debugging jQuery in Firebug

2009-04-07 Thread Dave S
Thank you.

On Tue, Apr 7, 2009 at 8:39 AM, Liam Potter  wrote:

>
> console.log(variable_here);
>
> Dave S wrote:
>
>> Ok, simple.   I want to debug.  I want to see what values I'm getting for
>> the variables or actions that happen as a result of an event.
>>
>> On Mon, Apr 6, 2009 at 5:57 PM, MorningZ > morni...@gmail.com>> wrote:
>>
>>
>>"how to debug"  is a pretty super vague statement
>>
>>what are you looking to do?  find objects?  track your code?  watch
>>AJAX requests?
>>
>>
>>On Apr 6, 10:50 am, jQueryAddict >> wrote:
>>> I've seen a crapload of old posts but none really work well.  Is
>>> everyone still just using the consol log thingy in Firebug or what?
>>> I've never used that with jQuery so I do not understand how to debug
>>> jQuery in Firebug still
>>
>>
>>


[jQuery] Re: Debugging jQuery in Firebug

2009-04-07 Thread Liam Potter


console.log(variable_here);

Dave S wrote:
Ok, simple.   I want to debug.  I want to see what values I'm getting 
for the variables or actions that happen as a result of an event.


On Mon, Apr 6, 2009 at 5:57 PM, MorningZ > wrote:



"how to debug"  is a pretty super vague statement

what are you looking to do?  find objects?  track your code?  watch
AJAX requests?


On Apr 6, 10:50 am, jQueryAddict mailto:jqueryadd...@gmail.com>> wrote:
> I've seen a crapload of old posts but none really work well.  Is
> everyone still just using the consol log thingy in Firebug or what?
> I've never used that with jQuery so I do not understand how to debug
> jQuery in Firebug still




[jQuery] Re: Debugging jQuery in Firebug

2009-04-07 Thread Dave S
Ok, simple.   I want to debug.  I want to see what values I'm getting for
the variables or actions that happen as a result of an event.

On Mon, Apr 6, 2009 at 5:57 PM, MorningZ  wrote:

>
> "how to debug"  is a pretty super vague statement
>
> what are you looking to do?  find objects?  track your code?  watch
> AJAX requests?
>
>
> On Apr 6, 10:50 am, jQueryAddict  wrote:
> > I've seen a crapload of old posts but none really work well.  Is
> > everyone still just using the consol log thingy in Firebug or what?
> > I've never used that with jQuery so I do not understand how to debug
> > jQuery in Firebug still
>


[jQuery] Re: Debugging jQuery in Firebug

2009-04-07 Thread Eric Garside

I've also got a nice wrapper method for jQuery to interface directly
with the firebug plugin. Check here for the snippet:
http://snipplr.com/view/10358/jquery-to-firebug-logging/

On Apr 7, 7:22 am, Chuck Harmston  wrote:
> There are a few cool methods for debugging Javascript in Firebug:
>
>    - In addition to everybody's favorite console.log() method, there is also
>    console.debug(), console.info(), and console.error(), each of which are
>    color coded differently. If you use console.error(), then it actually logs
>    it as a Javascript error, even if the syntax is correct.
>    - console.trace() will give you a detailed stack trace, providing the
>    funtions on the stack and the values of each argument.
>    - console.dir(object) will dump all the properties of the passed object
>    - console.dirxml(element) will elegantly dump any XML element. It doesn't
>    exist uet, but I'd love a console.dirjson(element) method.
>    - You can chunk any logging messages by running console.group("Group
>    title") before and console.groupEnd() after a related group of code. You 
> can
>    nest as many levels as you'd like.
>    -
>    - You can track Javascript performance by running console.profile()
>    before the code you want to track, then console.profileEnd() afterward.
>    Firebug will give detailed information on each method called between the
>
> Chuck Harmstonhttp://chuckharmston.com
>
> On Tue, Apr 7, 2009 at 1:10 AM, rachel navarro 
> wrote:
>
> > i have a related question. how do i track my code? how do i know which
> > function is being called first and so on? like having a stack trace. is
> > there such a tool for firefox?
>
> > On Tue, Apr 7, 2009 at 6:57 AM, MorningZ  wrote:
>
> >> "how to debug"  is a pretty super vague statement
>
> >> what are you looking to do?  find objects?  track your code?  watch
> >> AJAX requests?
>
> >> On Apr 6, 10:50 am, jQueryAddict  wrote:
> >> > I've seen a crapload of old posts but none really work well.  Is
> >> > everyone still just using the consol log thingy in Firebug or what?
> >> > I've never used that with jQuery so I do not understand how to debug
> >> > jQuery in Firebug still


[jQuery] Re: Debugging jQuery in Firebug

2009-04-07 Thread Chuck Harmston
There are a few cool methods for debugging Javascript in Firebug:

   - In addition to everybody's favorite console.log() method, there is also
   console.debug(), console.info(), and console.error(), each of which are
   color coded differently. If you use console.error(), then it actually logs
   it as a Javascript error, even if the syntax is correct.
   - console.trace() will give you a detailed stack trace, providing the
   funtions on the stack and the values of each argument.
   - console.dir(object) will dump all the properties of the passed object
   - console.dirxml(element) will elegantly dump any XML element. It doesn't
   exist uet, but I'd love a console.dirjson(element) method.
   - You can chunk any logging messages by running console.group("Group
   title") before and console.groupEnd() after a related group of code. You can
   nest as many levels as you'd like.
   -
   - You can track Javascript performance by running console.profile()
   before the code you want to track, then console.profileEnd() afterward.
   Firebug will give detailed information on each method called between the

Chuck Harmston
http://chuckharmston.com


On Tue, Apr 7, 2009 at 1:10 AM, rachel navarro 
wrote:
> i have a related question. how do i track my code? how do i know which
> function is being called first and so on? like having a stack trace. is
> there such a tool for firefox?
>
> On Tue, Apr 7, 2009 at 6:57 AM, MorningZ  wrote:
>>
>> "how to debug"  is a pretty super vague statement
>>
>> what are you looking to do?  find objects?  track your code?  watch
>> AJAX requests?
>>
>>
>> On Apr 6, 10:50 am, jQueryAddict  wrote:
>> > I've seen a crapload of old posts but none really work well.  Is
>> > everyone still just using the consol log thingy in Firebug or what?
>> > I've never used that with jQuery so I do not understand how to debug
>> > jQuery in Firebug still
>


[jQuery] Re: Debugging jQuery in Firebug

2009-04-07 Thread donb

That's Firebug.  Breakpoints, Watched variables, Stack, Console - it's
all there.

On Apr 7, 1:10 am, rachel navarro  wrote:
> i have a related question. how do i track my code? how do i know which
> function is being called first and so on? like having a stack trace. is
> there such a tool for firefox?
>
> On Tue, Apr 7, 2009 at 6:57 AM, MorningZ  wrote:
>
> > "how to debug"  is a pretty super vague statement
>
> > what are you looking to do?  find objects?  track your code?  watch
> > AJAX requests?
>
> > On Apr 6, 10:50 am, jQueryAddict  wrote:
> > > I've seen a crapload of old posts but none really work well.  Is
> > > everyone still just using the consol log thingy in Firebug or what?
> > > I've never used that with jQuery so I do not understand how to debug
> > > jQuery in Firebug still


[jQuery] Re: Debugging jQuery in Firebug

2009-04-06 Thread rachel navarro
i have a related question. how do i track my code? how do i know which
function is being called first and so on? like having a stack trace. is
there such a tool for firefox?

On Tue, Apr 7, 2009 at 6:57 AM, MorningZ  wrote:

>
> "how to debug"  is a pretty super vague statement
>
> what are you looking to do?  find objects?  track your code?  watch
> AJAX requests?
>
>
> On Apr 6, 10:50 am, jQueryAddict  wrote:
> > I've seen a crapload of old posts but none really work well.  Is
> > everyone still just using the consol log thingy in Firebug or what?
> > I've never used that with jQuery so I do not understand how to debug
> > jQuery in Firebug still
>


[jQuery] Re: Debugging jQuery in Firebug

2009-04-06 Thread MorningZ

"how to debug"  is a pretty super vague statement

what are you looking to do?  find objects?  track your code?  watch
AJAX requests?


On Apr 6, 10:50 am, jQueryAddict  wrote:
> I've seen a crapload of old posts but none really work well.  Is
> everyone still just using the consol log thingy in Firebug or what?
> I've never used that with jQuery so I do not understand how to debug
> jQuery in Firebug still


[jQuery] Re: Debugging jQuery

2007-05-22 Thread Ⓙⓐⓚⓔ

that code looks good. I was trying to build upon firebug like calls. It can
pick up where firebug is not installed.

On 5/22/07, Benjamin Sterling <[EMAIL PROTECTED]> wrote:


Hey, I am only getting in on the tail end of this convo, but there is a
debugger that I have been using and it works great in all major browsers on
pc and mac:

http://dev.jquery.com/browser/plugins/interface/ilogger.js?rev=317

I made some minor mods to it, but nothing major, you can see it in action:
http://sabic.informationexperts.com/index.asp

--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-22 Thread Ⓙⓐⓚⓔ

hmm, an $(anything).debug() where anything is entered


for turning it off.
try
  DEBUG=false
in any script that's loaded after debug.

On 5/22/07, Daemach <[EMAIL PROTECTED]> wrote:



If I had one other wish, it would be to have a command line so I could
run jQuery selectors and get arrays back.  That's probably a stretch,
but you asked ;)  I don't think firebug lite supports anything more
than those, though you could look at the js file and see if you can
find anything else that might be interesting.

OK maybe one more thing - the ability to turn off all debugging with a
switch so I can leave the code in there without reducing performance,
turning it on when I need to troubleshoot.

On May 22, 3:49 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> thanks! I'm adding some of the firebug commands.
>
> console.time & timeEnd are working.
>
> Is there another command that you  like  to run without loading firebug
> lite?
>
> On 5/22/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
>
> > It works great Jake ;)  Excellent work and thank you very much for
> > making it available!
>
> > On May 21, 5:21 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > > Now I start off closed, and use a light blue background in the debug
> > div.
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-22 Thread Benjamin Sterling

Hey, I am only getting in on the tail end of this convo, but there is a
debugger that I have been using and it works great in all major browsers on
pc and mac:

http://dev.jquery.com/browser/plugins/interface/ilogger.js?rev=317

I made some minor mods to it, but nothing major, you can see it in action:
http://sabic.informationexperts.com/index.asp

--
Benjamin Sterling
http://www.KenzoMedia.com
http://www.KenzoHosting.com


[jQuery] Re: Debugging jQuery

2007-05-22 Thread Daemach

If I had one other wish, it would be to have a command line so I could
run jQuery selectors and get arrays back.  That's probably a stretch,
but you asked ;)  I don't think firebug lite supports anything more
than those, though you could look at the js file and see if you can
find anything else that might be interesting.

OK maybe one more thing - the ability to turn off all debugging with a
switch so I can leave the code in there without reducing performance,
turning it on when I need to troubleshoot.

On May 22, 3:49 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> thanks! I'm adding some of the firebug commands.
>
> console.time & timeEnd are working.
>
> Is there another command that you  like  to run without loading firebug
> lite?
>
> On 5/22/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
>
> > It works great Jake ;)  Excellent work and thank you very much for
> > making it available!
>
> > On May 21, 5:21 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > > Now I start off closed, and use a light blue background in the debug
> > div.
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



[jQuery] Re: Debugging jQuery

2007-05-22 Thread Ⓙⓐⓚⓔ

thanks! I'm adding some of the firebug commands.

console.time & timeEnd are working.

Is there another command that you  like  to run without loading firebug
lite?



On 5/22/07, Daemach <[EMAIL PROTECTED]> wrote:


It works great Jake ;)  Excellent work and thank you very much for
making it available!

On May 21, 5:21 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> Now I start off closed, and use a light blue background in the debug
div.
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-22 Thread Daemach
It works great Jake ;)  Excellent work and thank you very much for
making it available!

On May 21, 5:21 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> Now I start off closed, and use a light blue background in the debug div.
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ

Now I start off closed, and use a light blue background in the debug div.
--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ

try this version...

starts the debug div minimized, and tries to make console calls available if
neither firebug or firebug lite is used.

http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/


thanks for the feedback!

On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


You have tiny pages! Starting it off closed sounds good though!

I used to take over the console.log function... now it doesn't.. I'll look
at firebug lite again I don't want to conflict if it's incuded.

If the real firebug is there, it uses it.

On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
> I understand, but the blue line starts off in the middle of the page -
> it looks very strange ;)  It might be better if it starts off closed
> until it starts getting log calls.
>
> Can you have it available at console.log as well so I don't have to
> change all of my code?  If I'm logging to firebug, that's what I use.
> On that note, if firebug is there and I use $.log will it log to the
> firebug console or yours?
>
> On May 21, 3:19 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > it's a blue border top. I wanted it to look different than most of the
> pages
> > I write!
> >
> > When you start throwing in debug & log calls, it fills up. and turns
> into a
> > scrolling div. the little demo debug.html shows this.
> >
> > On 5/21/07, Daemach < [EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> > > I downloaded it, and when I fire up the page I get a blue line near
> > > the bottom - not a panel with a blue border, just a blue line.  When
> I
> > > mouse over the line it says shift-click to close
> >
> > > No debug info either.  This is in IE7.
> >
> > > On May 21, 9:49 am, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > try the latest update
> > > athttp://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
> >
> > > > On 5/21/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote:
> >
> > > > > I think I do a better job with objects! Both simple and jQuerys.
> But I
> > > > > didn't even try timings. I show the same info as full firebug,
> with a
> > > > > mouseover/title of the dom node. I'll work on co-existence with
> > > firebug
> > > > > lite, so you would have $.log and console. routines together.
> >
> > > > > On 5/20/07, Daemach < [EMAIL PROTECTED]> wrote:
> >
> > > > > > I mostly use it for the log and timing functions
> (time/timeend)
> > > since
> > > > > > I can't get much else out of IE.  You can't really dump any
> useful
> > > > > > information to the console - objects just show as "Object", so
> if
> > > you
> > > > > > can do a better job with that, it would help a lot ;)  I use
> the
> > > > > > timing functions to compare performance between firefox and IE
> since
> > > > > > there is no profiler.
> >
> > > > > > On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > > Yes, It does some similar things, and steps all over firebug
> lite.
> >
> > > > > > > Is there a feature in firebug lite that you really like? I'm
> sure
> > > I
> > > > > > can
> > > > > > > incorporate it or make it more compatible.
> >
> > > > > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
> >
> > > > > > > > Thanks Jake - new tools are always
> appreciated.  Unfortunately,
> > > this
> >
> > > > > > > > plugin breaks firebug.js which is my only source of
> information
> > > in
> > > > > > IE :
> > > > > > > > (
> >
> > > > > > > >http://www.getfirebug.com/lite.html
> >
> > > > > > > > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > > > > Get yer red-hot debugging...
> >
> > > > > > > > > http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
> >
> > > > > > > > > I would like any feedback!!
> >
> > > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote:
> >
> > > > > > > > > > That was my goal, after I get feedback and make sure
> nobody
> > > has
> > > > > > > > anything
> > > > > > > > > > better!!!
> >
> > > > > > > > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]>
> wrote:
> >
> > > > > > > > > > > Looks great Jake. How about adding it to jQuery
> Plugins
> > > SVN?
> >
> > > > > > > > > > > --
> > > > > > > > > > > Brandon Aaron
> >
> > > > > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ < [EMAIL PROTECTED]> wrote:
> > > > > > > > > > > > over the months, I've re-written my debug library
> > > several
> > > > > > times.
> > > > > > > > > > > > I'm pretty happy with this one. based on code from
> all
> > > over
> > > > > > the
> > > > > > > > place!
> >
> > > > > > > > > > > > I hope you can all read the attached file.
> >
> > > > > > > > > > --
> > > > > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > > > > > > > > --
> > > > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > > > > > > --
> > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > > > > --
> > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
>


--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ

You have tiny pages! Starting it off closed sounds good though!

I used to take over the console.log function... now it doesn't.. I'll look
at firebug lite again I don't want to conflict if it's incuded.

If the real firebug is there, it uses it.

On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote:



I understand, but the blue line starts off in the middle of the page -
it looks very strange ;)  It might be better if it starts off closed
until it starts getting log calls.

Can you have it available at console.log as well so I don't have to
change all of my code?  If I'm logging to firebug, that's what I use.
On that note, if firebug is there and I use $.log will it log to the
firebug console or yours?

On May 21, 3:19 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> it's a blue border top. I wanted it to look different than most of the
pages
> I write!
>
> When you start throwing in debug & log calls, it fills up. and turns
into a
> scrolling div. the little demo debug.html shows this.
>
> On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > I downloaded it, and when I fire up the page I get a blue line near
> > the bottom - not a panel with a blue border, just a blue line.  When I
> > mouse over the line it says shift-click to close
>
> > No debug info either.  This is in IE7.
>
> > On May 21, 9:49 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > > try the latest update
> > athttp://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > I think I do a better job with objects! Both simple and jQuerys.
But I
> > > > didn't even try timings. I show the same info as full firebug,
with a
> > > > mouseover/title of the dom node. I'll work on co-existence with
> > firebug
> > > > lite, so you would have $.log and console. routines together.
>
> > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > > > I mostly use it for the log and timing functions (time/timeend)
> > since
> > > > > I can't get much else out of IE.  You can't really dump any
useful
> > > > > information to the console - objects just show as "Object", so
if
> > you
> > > > > can do a better job with that, it would help a lot ;)  I use the
> > > > > timing functions to compare performance between firefox and IE
since
> > > > > there is no profiler.
>
> > > > > On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > Yes, It does some similar things, and steps all over firebug
lite.
>
> > > > > > Is there a feature in firebug lite that you really like? I'm
sure
> > I
> > > > > can
> > > > > > incorporate it or make it more compatible.
>
> > > > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > > > > > Thanks Jake - new tools are always
appreciated.  Unfortunately,
> > this
>
> > > > > > > plugin breaks firebug.js which is my only source of
information
> > in
> > > > > IE :
> > > > > > > (
>
> > > > > > >http://www.getfirebug.com/lite.html
>
> > > > > > > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > > > Get yer red-hot debugging...
>
> > > > > > > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > > > > > > I would like any feedback!!
>
> > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > > That was my goal, after I get feedback and make sure
nobody
> > has
> > > > > > > anything
> > > > > > > > > better!!!
>
> > > > > > > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]>
wrote:
>
> > > > > > > > > > Looks great Jake. How about adding it to jQuery
Plugins
> > SVN?
>
> > > > > > > > > > --
> > > > > > > > > > Brandon Aaron
>
> > > > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > > > > > > over the months, I've re-written my debug library
> > several
> > > > > times.
> > > > > > > > > > > I'm pretty happy with this one. based on code from
all
> > over
> > > > > the
> > > > > > > place!
>
> > > > > > > > > > > I hope you can all read the attached file.
>
> > > > > > > > > --
> > > > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > > > > > --
> > > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > > > --
> > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-21 Thread Daemach

I understand, but the blue line starts off in the middle of the page -
it looks very strange ;)  It might be better if it starts off closed
until it starts getting log calls.

Can you have it available at console.log as well so I don't have to
change all of my code?  If I'm logging to firebug, that's what I use.
On that note, if firebug is there and I use $.log will it log to the
firebug console or yours?

On May 21, 3:19 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> it's a blue border top. I wanted it to look different than most of the pages
> I write!
>
> When you start throwing in debug & log calls, it fills up. and turns into a
> scrolling div. the little demo debug.html shows this.
>
> On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > I downloaded it, and when I fire up the page I get a blue line near
> > the bottom - not a panel with a blue border, just a blue line.  When I
> > mouse over the line it says shift-click to close
>
> > No debug info either.  This is in IE7.
>
> > On May 21, 9:49 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > > try the latest update
> > athttp://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > I think I do a better job with objects! Both simple and jQuerys. But I
> > > > didn't even try timings. I show the same info as full firebug, with a
> > > > mouseover/title of the dom node. I'll work on co-existence with
> > firebug
> > > > lite, so you would have $.log and console. routines together.
>
> > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > > > I mostly use it for the log and timing functions (time/timeend)
> > since
> > > > > I can't get much else out of IE.  You can't really dump any useful
> > > > > information to the console - objects just show as "Object", so if
> > you
> > > > > can do a better job with that, it would help a lot ;)  I use the
> > > > > timing functions to compare performance between firefox and IE since
> > > > > there is no profiler.
>
> > > > > On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > Yes, It does some similar things, and steps all over firebug lite.
>
> > > > > > Is there a feature in firebug lite that you really like? I'm sure
> > I
> > > > > can
> > > > > > incorporate it or make it more compatible.
>
> > > > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > > > > > Thanks Jake - new tools are always appreciated.  Unfortunately,
> > this
>
> > > > > > > plugin breaks firebug.js which is my only source of information
> > in
> > > > > IE :
> > > > > > > (
>
> > > > > > >http://www.getfirebug.com/lite.html
>
> > > > > > > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > > > Get yer red-hot debugging...
>
> > > > > > > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > > > > > > I would like any feedback!!
>
> > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > > > > > > That was my goal, after I get feedback and make sure nobody
> > has
> > > > > > > anything
> > > > > > > > > better!!!
>
> > > > > > > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > > > > > > > > Looks great Jake. How about adding it to jQuery Plugins
> > SVN?
>
> > > > > > > > > > --
> > > > > > > > > > Brandon Aaron
>
> > > > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > > > > > > over the months, I've re-written my debug library
> > several
> > > > > times.
> > > > > > > > > > > I'm pretty happy with this one. based on code from all
> > over
> > > > > the
> > > > > > > place!
>
> > > > > > > > > > > I hope you can all read the attached file.
>
> > > > > > > > > --
> > > > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > > > > > --
> > > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > > > --
> > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ

it's a blue border top. I wanted it to look different than most of the pages
I write!

When you start throwing in debug & log calls, it fills up. and turns into a
scrolling div. the little demo debug.html shows this.

On 5/21/07, Daemach <[EMAIL PROTECTED]> wrote:



I downloaded it, and when I fire up the page I get a blue line near
the bottom - not a panel with a blue border, just a blue line.  When I
mouse over the line it says shift-click to close

No debug info either.  This is in IE7.

On May 21, 9:49 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> try the latest update
athttp://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > I think I do a better job with objects! Both simple and jQuerys. But I
> > didn't even try timings. I show the same info as full firebug, with a
> > mouseover/title of the dom node. I'll work on co-existence with
firebug
> > lite, so you would have $.log and console. routines together.
>
> > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > I mostly use it for the log and timing functions (time/timeend)
since
> > > I can't get much else out of IE.  You can't really dump any useful
> > > information to the console - objects just show as "Object", so if
you
> > > can do a better job with that, it would help a lot ;)  I use the
> > > timing functions to compare performance between firefox and IE since
> > > there is no profiler.
>
> > > On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > Yes, It does some similar things, and steps all over firebug lite.
>
> > > > Is there a feature in firebug lite that you really like? I'm sure
I
> > > can
> > > > incorporate it or make it more compatible.
>
> > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > > > Thanks Jake - new tools are always appreciated.  Unfortunately,
this
>
> > > > > plugin breaks firebug.js which is my only source of information
in
> > > IE :
> > > > > (
>
> > > > >http://www.getfirebug.com/lite.html
>
> > > > > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > Get yer red-hot debugging...
>
> > > > > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > > > > I would like any feedback!!
>
> > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > > > > That was my goal, after I get feedback and make sure nobody
has
> > > > > anything
> > > > > > > better!!!
>
> > > > > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > > > > > > Looks great Jake. How about adding it to jQuery Plugins
SVN?
>
> > > > > > > > --
> > > > > > > > Brandon Aaron
>
> > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > > > > over the months, I've re-written my debug library
several
> > > times.
> > > > > > > > > I'm pretty happy with this one. based on code from all
over
> > > the
> > > > > place!
>
> > > > > > > > > I hope you can all read the attached file.
>
> > > > > > > --
> > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > > > --
> > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-21 Thread Daemach

I downloaded it, and when I fire up the page I get a blue line near
the bottom - not a panel with a blue border, just a blue line.  When I
mouse over the line it says shift-click to close

No debug info either.  This is in IE7.

On May 21, 9:49 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> try the latest update 
> athttp://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > I think I do a better job with objects! Both simple and jQuerys. But I
> > didn't even try timings. I show the same info as full firebug, with a
> > mouseover/title of the dom node. I'll work on co-existence with firebug
> > lite, so you would have $.log and console. routines together.
>
> > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > I mostly use it for the log and timing functions (time/timeend) since
> > > I can't get much else out of IE.  You can't really dump any useful
> > > information to the console - objects just show as "Object", so if you
> > > can do a better job with that, it would help a lot ;)  I use the
> > > timing functions to compare performance between firefox and IE since
> > > there is no profiler.
>
> > > On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > Yes, It does some similar things, and steps all over firebug lite.
>
> > > > Is there a feature in firebug lite that you really like? I'm sure I
> > > can
> > > > incorporate it or make it more compatible.
>
> > > > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
> > > > > Thanks Jake - new tools are always appreciated.  Unfortunately, this
>
> > > > > plugin breaks firebug.js which is my only source of information in
> > > IE :
> > > > > (
>
> > > > >http://www.getfirebug.com/lite.html
>
> > > > > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > > > Get yer red-hot debugging...
>
> > > > > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > > > > I would like any feedback!!
>
> > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > > > > That was my goal, after I get feedback and make sure nobody has
> > > > > anything
> > > > > > > better!!!
>
> > > > > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > > > > > > Looks great Jake. How about adding it to jQuery Plugins SVN?
>
> > > > > > > > --
> > > > > > > > Brandon Aaron
>
> > > > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > > > > over the months, I've re-written my debug library several
> > > times.
> > > > > > > > > I'm pretty happy with this one. based on code from all over
> > > the
> > > > > place!
>
> > > > > > > > > I hope you can all read the attached file.
>
> > > > > > > --
> > > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > > > --
> > > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ

try the latest update at
http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/


On 5/21/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


I think I do a better job with objects! Both simple and jQuerys. But I
didn't even try timings. I show the same info as full firebug, with a
mouseover/title of the dom node. I'll work on co-existence with firebug
lite, so you would have $.log and console. routines together.



On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
> I mostly use it for the log and timing functions (time/timeend) since
> I can't get much else out of IE.  You can't really dump any useful
> information to the console - objects just show as "Object", so if you
> can do a better job with that, it would help a lot ;)  I use the
> timing functions to compare performance between firefox and IE since
> there is no profiler.
>
> On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > Yes, It does some similar things, and steps all over firebug lite.
> >
> > Is there a feature in firebug lite that you really like? I'm sure I
> can
> > incorporate it or make it more compatible.
> >
> > On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
> >
> >
> >
> >
> >
> > > Thanks Jake - new tools are always appreciated.  Unfortunately, this
>
> > > plugin breaks firebug.js which is my only source of information in
> IE :
> > > (
> >
> > >http://www.getfirebug.com/lite.html
> >
> > > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" < [EMAIL PROTECTED]> wrote:
> > > > Get yer red-hot debugging...
> >
> > > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
> >
> > > > I would like any feedback!!
> >
> > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> >
> > > > > That was my goal, after I get feedback and make sure nobody has
> > > anything
> > > > > better!!!
> >
> > > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
> >
> > > > > > Looks great Jake. How about adding it to jQuery Plugins SVN?
> >
> > > > > > --
> > > > > > Brandon Aaron
> >
> > > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > > over the months, I've re-written my debug library several
> times.
> > > > > > > I'm pretty happy with this one. based on code from all over
> the
> > > place!
> >
> > > > > > > I hope you can all read the attached file.
> >
> > > > > --
> > > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
> >
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
>


--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-21 Thread Ⓙⓐⓚⓔ

I think I do a better job with objects! Both simple and jQuerys. But I
didn't even try timings. I show the same info as full firebug, with a
mouseover/title of the dom node. I'll work on co-existence with firebug
lite, so you would have $.log and console. routines together.



On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:



I mostly use it for the log and timing functions (time/timeend) since
I can't get much else out of IE.  You can't really dump any useful
information to the console - objects just show as "Object", so if you
can do a better job with that, it would help a lot ;)  I use the
timing functions to compare performance between firefox and IE since
there is no profiler.

On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> Yes, It does some similar things, and steps all over firebug lite.
>
> Is there a feature in firebug lite that you really like? I'm sure I can
> incorporate it or make it more compatible.
>
> On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Thanks Jake - new tools are always appreciated.  Unfortunately, this
> > plugin breaks firebug.js which is my only source of information in IE
:
> > (
>
> >http://www.getfirebug.com/lite.html
>
> > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > > Get yer red-hot debugging...
>
> > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > I would like any feedback!!
>
> > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > That was my goal, after I get feedback and make sure nobody has
> > anything
> > > > better!!!
>
> > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > > > Looks great Jake. How about adding it to jQuery Plugins SVN?
>
> > > > > --
> > > > > Brandon Aaron
>
> > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > over the months, I've re-written my debug library several
times.
> > > > > > I'm pretty happy with this one. based on code from all over
the
> > place!
>
> > > > > > I hope you can all read the attached file.
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-20 Thread Daemach

I mostly use it for the log and timing functions (time/timeend) since
I can't get much else out of IE.  You can't really dump any useful
information to the console - objects just show as "Object", so if you
can do a better job with that, it would help a lot ;)  I use the
timing functions to compare performance between firefox and IE since
there is no profiler.

On May 20, 8:53 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> Yes, It does some similar things, and steps all over firebug lite.
>
> Is there a feature in firebug lite that you really like? I'm sure I can
> incorporate it or make it more compatible.
>
> On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Thanks Jake - new tools are always appreciated.  Unfortunately, this
> > plugin breaks firebug.js which is my only source of information in IE :
> > (
>
> >http://www.getfirebug.com/lite.html
>
> > On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> > > Get yer red-hot debugging...
>
> > >http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> > > I would like any feedback!!
>
> > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
> > > > That was my goal, after I get feedback and make sure nobody has
> > anything
> > > > better!!!
>
> > > > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > > > Looks great Jake. How about adding it to jQuery Plugins SVN?
>
> > > > > --
> > > > > Brandon Aaron
>
> > > > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > > > over the months, I've re-written my debug library several times.
> > > > > > I'm pretty happy with this one. based on code from all over the
> > place!
>
> > > > > > I hope you can all read the attached file.
>
> > > > --
> > > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> > > --
> > > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



[jQuery] Re: Debugging jQuery

2007-05-20 Thread Ⓙⓐⓚⓔ

Yes, It does some similar things, and steps all over firebug lite.

Is there a feature in firebug lite that you really like? I'm sure I can
incorporate it or make it more compatible.

On 5/20/07, Daemach <[EMAIL PROTECTED]> wrote:



Thanks Jake - new tools are always appreciated.  Unfortunately, this
plugin breaks firebug.js which is my only source of information in IE :
(

http://www.getfirebug.com/lite.html

On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> Get yer red-hot debugging...
>
> http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> I would like any feedback!!
>
> On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > That was my goal, after I get feedback and make sure nobody has
anything
> > better!!!
>
> > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > Looks great Jake. How about adding it to jQuery Plugins SVN?
>
> > > --
> > > Brandon Aaron
>
> > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > over the months, I've re-written my debug library several times.
> > > > I'm pretty happy with this one. based on code from all over the
place!
>
> > > > I hope you can all read the attached file.
>
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-20 Thread Daemach

Thanks Jake - new tools are always appreciated.  Unfortunately, this
plugin breaks firebug.js which is my only source of information in IE :
(

http://www.getfirebug.com/lite.html

On May 19, 9:39 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote:
> Get yer red-hot debugging...
>
> http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/
>
> I would like any feedback!!
>
> On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > That was my goal, after I get feedback and make sure nobody has anything
> > better!!!
>
> > On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> > > Looks great Jake. How about adding it to jQuery Plugins SVN?
>
> > > --
> > > Brandon Aaron
>
> > > On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > > > over the months, I've re-written my debug library several times.
> > > > I'm pretty happy with this one. based on code from all over the place!
>
> > > > I hope you can all read the attached file.
>
> > --
> > Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ
>
> --
> Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ



[jQuery] Re: Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ

Get yer red-hot debugging...

http://jqueryjs.googlecode.com/svn/trunk/plugins/debug/

I would like any feedback!!

On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:


That was my goal, after I get feedback and make sure nobody has anything
better!!!

On 5/19/07, Brandon Aaron < [EMAIL PROTECTED]> wrote:
>
> Looks great Jake. How about adding it to jQuery Plugins SVN?
>
> --
> Brandon Aaron
>
> On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> > over the months, I've re-written my debug library several times.
> > I'm pretty happy with this one. based on code from all over the place!
>
> >
> > I hope you can all read the attached file.
> >
> >
> >
>



--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ

That was my goal, after I get feedback and make sure nobody has anything
better!!!

On 5/19/07, Brandon Aaron <[EMAIL PROTECTED]> wrote:


Looks great Jake. How about adding it to jQuery Plugins SVN?

--
Brandon Aaron

On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:
> over the months, I've re-written my debug library several times.
> I'm pretty happy with this one. based on code from all over the place!
>
> I hope you can all read the attached file.
>
>
>





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-19 Thread Ⓙⓐⓚⓔ

I think you can pick up the file on google groups if your exchange discards
js attachments.

It's based on adding a debug plugin $(...).debug()

here is a lame sample:

http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="en">
   
   debugging
   
   
   
   DEBUG = true
   jQuery(function($){
   var search = document.location.search
   $.log('search',search)
   var x =[[[1],{x:23,y:'7',z:true}]]
   $.log('x',x)

$("#entry").submit(function(){$(this).debug("submitted");return
false}).debug("the form")
   $(":input")
   .click(function(){$(this).debug("clicked")})
   .change(function(){$(this).debug("changed")})
   .debug('input fields')
   });

   
   
   
   
   
   
   
   
   
   
   



On 5/19/07, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote:


 thanks jake, but i think it's better if you just post a link to a webpage
documenting your library. Here, Outlook prevented access to your .js
attachment. in any case,  without docs, i'm lost :)

 --
*From:* jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] *On
Behalf Of *
*Sent:* dimanche 20 mai 2007 3:17
*To:* jquery-en@googlegroups.com
*Subject:* [jQuery] Debugging jQuery

over the months, I've re-written my debug library several times.
I'm pretty happy with this one. based on code from all over the place!

I hope you can all read the attached file.


Ce message Envoi est certifié sans virus connu.
Analyse effectuée par AVG.
Version: 7.5.467 / Base de données virus: 269.7.4/811 - Date: 18/05/2007
15:50





--
Ⓙⓐⓚⓔ - יעקב   ʝǡǩȩ   ᎫᎪᏦᎬ


[jQuery] Re: Debugging jQuery

2007-05-19 Thread Brandon Aaron

Looks great Jake. How about adding it to jQuery Plugins SVN?

--
Brandon Aaron

On 5/19/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote:

over the months, I've re-written my debug library several times.
I'm pretty happy with this one. based on code from all over the place!

I hope you can all read the attached file.





[jQuery] Re: Debugging jQuery

2007-05-19 Thread Alexandre Plennevaux
thanks jake, but i think it's better if you just post a link to a webpage 
documenting your library. Here, Outlook prevented access to your .js 
attachment. in any case,  without docs, i'm lost :)

   _  

From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of 
Sent: dimanche 20 mai 2007 3:17
To: jquery-en@googlegroups.com
Subject: [jQuery] Debugging jQuery


over the months, I've re-written my debug library several times.
I'm pretty happy with this one. based on code from all over the place!

I hope you can all read the attached file.



Ce message Envoi est certifié sans virus connu.
Analyse effectuée par AVG.
Version: 7.5.467 / Base de données virus: 269.7.4/811 - Date: 18/05/2007 15:50