SO - 21026634
by Arun P Johny
HTML
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
<div class="test"></div>
CSS
.test {
position: relative;
width: 200px;
height: 200px;
background-color: pink;
margin-bottom: 10px;
}
JavaScript
$(document).ready(function () {
$('.test').html(function (i) {
return i + 1
});
});