вопрос
Здравствуйте!
Помогите подсчитать количество span в блоке с классом other, а вывести количество нужно возле пункта из меню
Помогите подсчитать количество span в блоке с классом other, а вывести количество нужно возле пункта из меню
Other - count (тут количество [b]span[/b])
Other2 - count (тут количество [b]span[/b])
<div class="other">
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
</div>
<div class="other2">
<span>1</span>
<span>2</span>
</div>
<div class="other">
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
</div>
<div class="other2">
<span>1</span>
<span>2</span>
</div>
Other - count (<span class="other-res"></span>)
Other2 - count (<span class="other2-res"></span>)
<script>
$(function(){
$(".other-res").html($(".other span").length);
$(".other2-res").html($(".other2 span").length);
})
</script>