jQuery, Replace comma (,) with comma + space (, )

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