JQuery Usuń wiele słów z ciągu
$("#Number").each(function() {
$(this).html($(this).html().replace('find1', 'replace1').replace('find2', 'replace2'));
});
Beautiful Booby