given this html
<div class="my_div">a</div>
<div class="my_div">b</div>
<div class="my_div">c</div>
<div>other</div>
I want select all .my_div element, but not last element from this class, this works not correct
$(".my_div:not(:last-child)").css({
color: "#090"
});
how can select all element from some class, except last element?


.my_div? If not, would aforloop work? I'm sorry, I'm not very good with jquery. – bspymaster Nov 9 '12 at 22:23