if you have problems, take a peek at my XML parsing extension function. Might not be exactly what you're looking for but it works for me.
http://jquery-and-javascript.blogspot.com/ loadXML2array: function() { return this.each(function() { var data = $.ajax({ type: "GET", url: "echo.php?xml=datatable1", async: false, success: function(xml) { objectArray = new Array(); $(xml).find('row').each(function(i){ rowObj = new Object(); rowObj.col1 = $(this).children('col_1').text(); rowObj.col2 = $(this).children('col_2').text(); rowObj.col3 = $(this).children('col_3').text(); objectArray.push(rowObj); }); } }) }); } On Feb 22, 12:54 pm, Steve Davis <[EMAIL PROTECTED]> wrote: > hey folks, > > could you look at this site: > > http://craniumdesigns.com/new/ > > and tell me why my xml isnt parsing on the portfolio area? i'm just > trying to have SOME sort of output. once it works i want to generate > all the portfolio images/info as "li" tags. the code is in the top of > index.html for easy viewing. i'm very new to jquery and not really > sure what i'm doing wrong.