With my JQuery call I can get the length of my Elements like this:
$(xml).find('PARENT').find('CHILDREN').length
from that I will get how many times my Element is exisiting. My current State looks like this.
Currently:
$(xml).find('PARENT').find('CHILDREN').length
Output> 8
What Output I want:
Output> 1 2 3 4 5 6 7 8
How can I count my length up ?