Last of the Mohicans

$(document).ready(function() {
    $('.mohicans').last().find('.hurons').each(function(){
        $(this).remove();
    });
});
Vote up this code0