Greetings,
The way the code looks and displays is beautiful =D
I suppose the issue I'm encountering is that I need to be able to run that script over every instance of:
Code:
<Created>2012-12-07T23:22:11.822Z</Created>
There are 5 instances of this that are pulled from an external XML file and they correspond directly with other posts I have:
Code:
<span id="Body0"></span>
Essentially I want to be able to do something of this nature:
Code:
<span id="Timestamp0"></span>
<span id="Body0"></span>
<span id="Timestamp1"></span>
<span id="Body1"></span>
<span id="Timestamp2"></span>
<span id="Body2"></span>
....etc
So, in short, the way it displays looks wonderful but I need to be able to have that script apply to any node pulled with the name "Created", then call it using a span.
Any help is appreciated!