[jQuery] Re: improve/extend the selectors

2009-09-08 Thread jeanluca
I've created a page demonstrating my problem/question (hope it helps!) http://www.ajaxify.org/jquery/ On Sep 8, 9:49 am, jeanluca wrote: > :) you're right about the first thing, my mistake! > > ok, lets only focus on the second (I've modified it a little bit!!) > >   $.ajax({ >            type:

[jQuery] Re: improve/extend the selectors

2009-09-08 Thread jeanluca
I've created a page demonstrating my problem/question (hope it helps!) http://www.ajaxify.org/jquery/ On Sep 8, 9:49 am, jeanluca wrote: > :) you're right about the first thing, my mistake! > > ok, lets only focus on the second (I've modified it a little bit!!) > >   $.ajax({ >            type:

[jQuery] Re: improve/extend the selectors

2009-09-08 Thread jeanluca
I've created a page demonstrating my problem/question (hope it helps!) http://www.ajaxify.org/jquery/ On Sep 8, 9:49 am, jeanluca wrote: > :) you're right about the first thing, my mistake! > > ok, lets only focus on the second (I've modified it a little bit!!) > >   $.ajax({ >            type:

[jQuery] Re: improve/extend the selectors

2009-09-08 Thread jeanluca
I've created a page demonstrating my problem/question (hope it helps!) http://www.ajaxify.org/jquery/ On Sep 8, 9:49 am, jeanluca wrote: > :) you're right about the first thing, my mistake! > > ok, lets only focus on the second (I've modified it a little bit!!) > >   $.ajax({ >            type:

[jQuery] Re: improve/extend the selectors

2009-09-08 Thread jeanluca
:) you're right about the first thing, my mistake! ok, lets only focus on the second (I've modified it a little bit!!) $.ajax({ type: "GET", url: 'myxml.xml', dataType: 'xml', success: function(xml){ alert( $("body", xml).html() ) ; //

[jQuery] Re: improve/extend the selectors

2009-09-07 Thread Michael Geary
Whoa, that's three things. (And the first one isn't even JavaScript.) Could we get this down to one specific, concrete case that you want to solve? I'm not very good at solving general problems that handle a lot of possibilities, but if there is one specific piece of code that you'd like to get w

[jQuery] Re: improve/extend the selectors

2009-09-07 Thread jeanluca
suppose you could ask for an array of div's like: obj->get_me _all_divs() ; // --> gives an array with div elements Or: $.ajax({ type: "GET", url: 'myxml.xml', dataType: 'xml', success: function(xml){ alert( $("body", xml) ) ;

[jQuery] Re: improve/extend the selectors

2009-09-07 Thread jeanluca
suppose you could ask for an array of div's like: obj->get_me _all_divs() ; // --> gives an array with div elements Or: $.ajax({ type: "GET", url: 'myxml.xml', dataType: 'xml', success: function(xml){ alert( $("body", xml) ) ;

[jQuery] Re: improve/extend the selectors

2009-09-07 Thread Michael Geary
You need to explain a little more about what you want. If you've created an object of your own, I don't think it will have "div" elements in it, will it? What *is* in your object, and what do you want to happen when you iterate over it? Could you give a complete specific example, with the actual ob