I have a part of an XML file that looks like this:
<paymentTypes>
<paymentType>type1</paymentType>
<paymentType>type2</paymentType>
<paymentType>type3</paymentType>
<paymentType>type4</paymentType>
</paymentTypes>
The thing is that I want to get it via ajax jQuery, but if I try this:
var paymentTypes = $(xml).find("paymentTypes").text()
the output will be type1type2type3type4.
What function should I use(built-in or should I write it) in order to get the results on separate lines?
Thanks!
UPDATE: In my XML file there are multiple items, each of them with their own entry.
var paymentTypes = $(xml).find("paymentType").map(function(){return $(this).text()}).get()paymentType, notpaymentTypes.<br/>instead of\n)?