Re: [jQuery] jQuery's build.xml. Question on ?

2006-11-08 Thread Derrek
Aaaah, I was thinking that there was some magic within js.jar.  I get it now.  Thanks Mike.On 11/8/06, Mike Alsup < [EMAIL PROTECTED]> wrote: > pretty much the same syntax but with different behavior.Look closer and you'll see that the 1st arg points to a js file thatperforms the magic.Mike

[jQuery] jQuery's build.xml. Question on ?

2006-11-08 Thread Derrek
Will someone explain to me the intricacies of this target? Thanks,Derrek ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] What's the proper way?

2006-11-07 Thread Derrek
Chris, in case you get confused:http://ant.apache.org/manual/CoreTasks/concat.htmlOn 11/7/06, Christopher Jordan <[EMAIL PROTECTED]> wrote: Sweet Derrek! Thanks a lot! :o) Chris Derrek wrote: If you're familiar with Any, here's a (re-worked) piece of my Ant code. 

Re: [jQuery] What's the proper way?

2006-11-07 Thread Derrek
If you're familiar with Any, here's a (re-worked) piece of my Ant code.  It takes all the specified .js files and concatenates them into bigFile.js.Just re-work this code to your needs and place within your                                                                 DerrekOn 11/7/06,

Re: [jQuery] console for IE

2006-11-07 Thread Derrek
Mark,That console is great!  Opening the seperate window is such an elegent solution.Keep up the good work.On 11/7/06, Mark Gibson <[EMAIL PROTECTED]> wrote:Hi, this isn't directly jQuery related, but I thought you'd beinterested.I've adapted the console.js script originally found here:http://wish

Re: [jQuery] Writing documentation, jQuery style?

2006-11-07 Thread Derrek
of the method ( jQuery.fn functions are always of type jQuery)I'd be happy to help you use the Visual jQuery template for XML files exported using the jQuery parser for internal documentation .-- Yehuda On 11/6/06, Derrek <[EMAIL PROTECTED]> wrote: Is there some documentation desc

Re: [jQuery] Writing documentation, jQuery style?

2006-11-06 Thread Derrek
John?  Yehuda?  Anyone?On 11/6/06, Derrek <[EMAIL PROTECTED]> wrote: Is there some documentation describing the metatags within the jQuery documentation?  I want to write some documentation for a project at work but in the jQuery style.  Also, are there any handy tools out there to tur

[jQuery] Writing documentation, jQuery style?

2006-11-06 Thread Derrek
have some basic HTML pages or something that is the JavaDoc-style. Thanks,Derrek ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] parent()

2006-10-18 Thread Derrek
], parent[1]Perhaps the someone could add this simple explanation to the documentation.I appreciate everyone's help,Derrek On 10/18/06, Blair McKenzie <[EMAIL PROTECTED]> wrote: Try :first. I think parents() actually works differently from the other filters, in that the elements are in re

Re: [jQuery] parent()

2006-10-18 Thread Derrek
Hi John,Say I have:                         If I do $('#myInput').parents('tr:last').before(' ... ') Then the the new row appears between and and not between and like I would expect. Did I screw up something?On 10/18/06, John Resig < [EMAIL PROTECTED]> wrote: > Yeah, but if I have a ta

Re: [jQuery] parent()

2006-10-18 Thread Derrek
ou'd use .ancestors().Oh yeah... man, I'm totally out of it today. Derrek - you should beusing .parents("tr") or .ancestors("tr") (they're synonymous). --John___jQuery mailing listdiscuss@jquery.comhttp://jquery.com/

Re: [jQuery] parent()

2006-10-18 Thread Derrek
I'm consfused about the difference between parents() and ancestors().  The documentation on visualjquery.com isn't very clear as to the difference and the behavior seems to be the same. On 10/18/06, Dave Methvin <[EMAIL PROTECTED]> wrote: >> But, to my mind, it makes sense to do>> $('#myElement').p

Re: [jQuery] parent()

2006-10-18 Thread Derrek
Hey John,Unfortunately, I don't have an example up.But, to my mind, it makes sense to do $('#myElement').parent().parent() because the parent of the is a and the parent of the is the .  Or is that wrong? DerrekOn 10/18/06, John Resig <[EMAIL PROTECTED]> wrote: > However, this produces no visual

[jQuery] parent()

2006-10-18 Thread Derrek
nge the code, I see my new row: $('#myElement').parent().parent() .before('Please correct the error');I don't like this since it's bound to a specific table arrangement.Does anyone have any hints or different solutions?Thanks,Derrek[Long time lurker, first time poster