[jQuery] Re: Question about selectors

2007-07-03 Thread Daniel Hollocher
Perfect! Thanks, just the info I needed. Dan On 7/3/07, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote: > > > Dan, > > >I tried $('table#my_id/tr') but that doesn't find anything. > > Try: > > $('table#my_id tr') > > - or - > > $('table#my_id/tbody/tr') > > >Then, I tried $('table#my_id').children(

[jQuery] Re: problem with ajax

2007-05-23 Thread Daniel Hollocher
I see, thanks guys. I guess I can't do it without making server side changes. O well! Dan On 5/23/07, Mike Alsup <[EMAIL PROTECTED]> wrote: > > > The key to this working properly is to ensure that the server is > returning its response with an XML mime type. > > In PHP do this: > > > In JS

[jQuery] Re: Switching params in $.post()

2007-05-23 Thread Daniel Hollocher
I think the param list is just an associative array. I google some pages for ya: http://blog.persistent.info/2004/08/javascript-associative-arrays.html http://ajaxian.com/archives/javascript-associative-arrays-considered-harmful So, you should just calculate the array into a single variable, how