sm-party
JavaScript
$(document).ready( function() {
$('.font_8').each(function(index, element) {
if (element.innerHTML.match(/руб./gi) != null) {
console.log( index + ": " + $( this ).text() );
var text = $(this).text().substring(4) + " руб. ";
$(this).text(text);
};
});
});