so for example i have a brunch of pages create by easytab which looks like below in HTML
<div class="tab-page1 identify">//something</div>
<div class="tab-page2 identify">//something</div>
<div class="tab-page3 identify">//something</div>
<div class="tab-page4 identify">//something</div>
And I'd like to add something in to the contents so i created a function like below
$(".identify").html("123");
I know i can do something like to add something in the last child but i'd like to add 123 in every child how may i do it?
$(".identify:last-child").html("123");