HTML
<div class="area ">
<span class="key"></span><!-- /.key -->
<span class="value prodano">Продано <img src="http://academyrealt.ru/template/frontend/realia/img/sold.png" style="position: absolute;margin-top: -200px;margin-left: -200px;height: 200px;"></span><!-- /.value -->
</div>
JS
$('.prodano').each(function() {
if ($(this).text().indexOf("Продано") >= 0) {
var pic = '
';
$(this).html('Продано ' + pic);
}});
так же потребуется jquery
Отзывы - 0