I need to show each div number on the page in order
And add the value of each div within the range
so if i have 4 divs inside the page like this
<div>first div</div> <div>second div</div> <div>third div</div>
each div should show its order and be so
<div>first div <span>1</span></div> <div>second div <span>2</span></div> <div>third div <span>3</span></div>
This html example code in jsfiddle
http://jsfiddle.net/CtDLe/
I need the result to be the same as using jQuery
http://jsfiddle.net/CtDLe/1/
source share