first off I am no jquery or javascripot guru  - I got this working in both
ie6 & ff3

in parse.js uncomment the ajax attempt and try the following

    $.ajax({
        type: "GET",
        url: path,
        dataType: "xml",
        success: function(data)
        {
            /* perform a function on each *'ele' *inside *'root'* and simply
alert
               the index (i) and contained text value (v) */
            $.each($('root ele', data), function(i, v)    {
                alert(i +' - ' + $(v).text());
            });
        }
    });

perhaps a more esteemed jquerian will expand / improve upon this (it works
but perhaps
there is a draw back I am unaware of)

- S

2008/6/17 koko <[EMAIL PROTECTED]>:

>
> Hello,
>
> I have a problem and I googled it for the solution but it seems that
> there is no solution for it !!
>
> I used $.get and $.ajax but the same problem
>
> could you take a look at the source .... just open index.html in IE
> and FF and see the difference
>
> also take a look at the comments in parse.js ...
>
> http://www.4shared.com/file/51709870/9e323fe8/xml.html
>
>
> appreciate it
>

Reply via email to