I have an object json
and I want to divide the result into a comma. Example : 01
, 02
, 03
, 04
, 05
Object json
:
[{"rank":"0102030405"}]
HTML output script
$.each(data, function() {
$('div#content').append(this.rank);
});