Re: [jQuery] How to determine number of elements after dom manipulation ?

2009-11-08 Thread Qamal Kosim-Satyaputra
where did you exactly call 'alert($('img').size())'? inside the callback function? remember ajax is asynchronous, if you're calling it after calling dataloader() the ajax mat not return yet and your images aren't yet in the DOM. On Mon, Nov 9, 2009 at 4:45 AM, Richard Bakker wrote: > Does anyone

Re: [jQuery] How to determine number of elements after dom manipulation ?

2009-11-08 Thread Karl Swedberg
You'll have to do it within the success callback: function dataloader(location,service,div){ $.ajax({ type: "GET", url: "includes/data.xml", dataType: "xml", success: function(xml) { $(xml).find('group').each(function(){ if($(this).attr("name") == service) {

Re: [jQuery] How to determine number of elements after dom manipulation ?

2009-11-08 Thread Richard Bakker
Does anyone perhaps know ? On 7 nov 2009, at 09:18, Richard Bakker wrote: I am generating elements (img's) based on data from an xml file. Once that is done, I want to determine the number of icons that were generated. i do a: alert($('img').size()) result: 0, which isn't the case how can i

[jQuery] How to determine number of elements after dom manipulation ?

2009-11-07 Thread Richard Bakker
I am generating elements (img's) based on data from an xml file. Once that is done, I want to determine the number of icons that were generated. i do a: alert($('img').size()) result: 0, which isn't the case how can i determine them after they have generated ? **

[jQuery] How to determine number of elements after dom manipulation ?

2009-11-05 Thread bakman
I am generating elements (img's) based on data from an xml file. Once that is done, I want to determine the number of icons that were generated. as naive as i am, i do a: alert($('img').size()) result: 0, which isn't the case how can i determine them after they have generated ? **