I would like to know how to maintain line breaks in my imported XML document. All loads well but I loose the breaks in each paragraph from the node name "newsstory". I originally separated each paragraph with

in the HTML version. Here's the example code:

$(document).ready(function()
              {
                $.ajax({
                  type: "GET",
                  url: "xml/news.xml",
                  dataType: "xml",
                  success: manipulateXml3
                });
              }); 

              function  manipulateXml3(data)
              {
                //find every Tutorial and print the author
                $(data).find("news").each(function()
                {

                  var newsheadline = $(this).find('newsheadline').text();
                  var reporter = $(this).find('reporter').text();
                  var agency = $(this).find('agency').text();
                  var imageurl = $(this).attr('imageurl');
                  var cutline = $(this).find('cutline').text();
                  var newsstory = $(this).find('newsstory').text();    

              html = '<h1>'+newsheadline+'</h1><h2>'+reporter+'</h2><h2>'+agency+'</h2>';
              html +='<div class="news">';
              html +='<img src="' + imageurl + '" title="'+ cutline +'" width="200"/>';
              html += ''+newsstory+''; 
              html += '</div>';

                  $("#tab").append(html);

                });
              }
link|improve this question
Debug your code and see what value of newsheadline is. If it has new lines - replace them with <P>. – Alexei Levenkov Mar 24 '11 at 20:08
feedback

1 Answer

I think it's because you use .text() wich extracts the text and ignores markup( asuming the linebreaks you refer to are <br />-tags).

use var newsstory = $(this).find('newsstory').html(); instead and it should work.

link|improve this answer
If this works for you. Please mark as answer :) – Guidhouse Apr 1 '11 at 13:06
feedback

Your Answer

 
or
required, but never shown

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