tags:

views:

145

answers:

1

I'm using jquery to parse some xml. However, the xml has line breaks and spaces in it. E.g.

some item

instead of

some item

When I get the text() of the node, I get "\n some item \n"

Is there some way I get either strip this white space after text() or just get jquery to ignore it while parsing?

Thanks

+1  A: 

I got it: jQuery.trim()

bingle