-1
I am quite layman in Javascript and jQuery, and I needed to change the id of the Divs in numerical order.
For example:
<div id="1"></div>
<div id="2"></div>
<div id="8"></div>
<div id="11"></div>
and turn into:
<div id="1"></div>
<div id="2"></div>
<div id="3"></div>
<div id="4"></div>
Someone knows a method to do this?
Thank you, that method worked too
– Eric Paiva