<div class="row"> <span id="status-account-year"> <span id="status-account-month"> <span id="status-account-day"> </div>
How to cycle through .row and delete all spans that have status-account- in the identifier
$('#status-account-???').remove();
Ps .: The code below does not fit, because there are other span
$('.row').each(function(){ $(this).find('span').remove(); });