[Solved] remove white space before comma

[ad_1]

You need to use:

$('[data-title="Score"]').text().replace(/ \,/g, ','); //or .replace(" ,", ','); for single occurence

if you want to replace the text :

$('[data-title="Score"]').text(function( index,text ) {
  return text.replace(/ \,/g, ','); //or .replace(" ,", ','); for single occurence
});

Working Demo

3

[ad_2]

solved remove white space before comma