$(window).load(function() {
$('.selector').each(function() {
var string = $(this).html();
$(this).html(string.replace(/,/g , ', '));
});
});
$(window).load(function() {
$('.selector').each(function() {
var string = $(this).html();
$(this).html(string.replace(/,/g , ', '));
});
});