jquery remove multiple words from string code example
Example: jquery remove multiple words from string
$("#Number").each(function() {
$(this).html($(this).html().replace('find1', 'replace1').replace('find2', 'replace2'));
});
$("#Number").each(function() {
$(this).html($(this).html().replace('find1', 'replace1').replace('find2', 'replace2'));
});