Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to generate HTML while parsing an XML document. The problem is that I have variables which needs to be assigned prior to being parsed - could anyone show me a workaround for this?

$.ajax({
    url: 'doc.xml',
    type:'get',
    dataType:'xml',
    async:'false',
    success:function(xmlReply){
        var out = '';
        var businfo = '';
        var businfoOne = '';
        var latFrom = '';
        var longFrom = '';
        var locationAt = '';
        var latTo = '';
        var longTo = '';
        $("#result").empty();

        out += '<ul id=\'resultslist\' data-role=\'listview\' data-theme=\'c\'>';
        $(xmlReply).find('itinerarie').each(function(){

            out += '<li data-role=\'list-divider\' data-theme=\'a\'>';
            locationAt = $(this).find('description').text();
            out += locationAt;
            out += '</li>';
            out += '<li><a href=\"#route_results_map\" onclick=\"plotMap(\''+businfo+'\','+latFrom+','+longFrom+','+latTo+','+longTo+')\">';  
            var count = 0;
            var transfer = $(this).find('route').length;
            $(this).find('route').each(function(){

                //display transfer
                if(count > 0){out+= '>>> Transfer To >>><br/>';}

                //display get on bus information
                if(count == 0){
                    businfo = $(this).find('bus').text();
                }
                out += $(this).find('bus').text();

                $(this).find('geton').each(function(){
                    //where to board the bus
                    if(count == 0){
                        latFrom = $(this).find('lat').text();
                        longFrom = $(this).find('long').text();
                    }
                    $(this).find('name').text();
                    out += '<br/>Leaves: '; 
                    out += $(this).find('time').text();
                })

                    //end geton
                    $(this).find('getoff').each(function(){
                        $(this).find('name').text();
                        out += ' <br/>Reaches: ';
                        out += $(this).find('time').text();
                        out += '<br/>';
                        latTo = $(this).find('lat').text();
                        longTo = $(this).find('long').text();
                    })
                        count++;
            })
                out += '</a></li>';
        })
            //out += '</ul>';
            $("#result").append($(out));
        $("#result").append('<ul>');
        $('#resultslist').listview();
    }//success
});//ajax
share|improve this question
what variable do you want to assign to where priorly , can you give more details – kobe Apr 30 '11 at 18:36
hi kobe, basically the variables i want to assign are the variables that I am parsing - so right now, the end result is: row 1 has not values, row 2 has values of row 1, and row 3 has values of row 2. – dtwy Apr 30 '11 at 20:03

1 Answer

In your code above, I don't see a reason why you can't delay building your final output after you parsed you XML. I changed your code a bit, I added a new temporary variable parse_out, in which you can build your HTML content for the item while you're parsing, then after everything was parsed, that's when you add your <li> to the final output (with the variables now set) and your HTML content from the parse_out temporary variable.

$.ajax({
    url: 'doc.xml',
    type:'get',
    dataType:'xml',
    async:'false',
    success:function(xmlReply){
        var out = '';
        var businfo = '';
        var businfoOne = '';
        var latFrom = '';
        var longFrom = '';
        var locationAt = '';
        var latTo = '';
        var longTo = '';
        $("#result").empty();

        out += '<ul id=\'resultslist\' data-role=\'listview\' data-theme=\'c\'>';
        $(xmlReply).find('itinerarie').each(function(){

            locationAt = $(this).find('description').text();
            var count = 0;
            var transfer = $(this).find('route').length;
            var parse_out = "";
            $(this).find('route').each(function(){

                //display transfer
                if(count > 0){parse_out+= '>>> Transfer To >>><br/>';}

                //display get on bus information
                if(count == 0){
                    businfo = $(this).find('bus').text();
                }
                parse_out += $(this).find('bus').text();

                $(this).find('geton').each(function(){
                    //where to board the bus
                    if(count == 0){
                        latFrom = $(this).find('lat').text();
                        longFrom = $(this).find('long').text();
                    }
                    $(this).find('name').text();
                    parse_out += '<br/>Leaves: '; 
                    parse_out += $(this).find('time').text();
                });

                    //end geton
                    $(this).find('getoff').each(function(){
                        $(this).find('name').text();
                        parse_out += ' <br/>Reaches: ';
                        parse_out += $(this).find('time').text();
                        parse_out += '<br/>';
                        latTo = $(this).find('lat').text();
                        longTo = $(this).find('long').text();
                    });
                        count++;
            });
            out += '<li data-role=\'list-divider\' data-theme=\'a\'>';
            out += locationAt;
            out += '</li>';
            out += '<li><a href=\"#route_results_map\" onclick=\"plotMap(\''+businfo+'\','+latFrom+','+longFrom+','+latTo+','+longTo+')\">';  
            out += parse_out;
            out += '</a></li>';
        });
        out += '</ul>';
        $("#result").append($(out));
        $('#resultslist').listview();
    }//success
});//ajax

I also didn't understand why you commented out closing your <ul> at the end of your processing and why you are appending an empty <ul> after your output, I changed that bit too to what I think might be what you wanted.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.