Putting apostrophes on a comma separated string

Putting apostrophes on a comma separated string

I have this sortable http://jsfiddle.net/thiswolf/HJBc3/1/ and it gets me a list of comma separated string for instance five,5056e32ccb09d,5056e33c86eb5 but i would like 'five','5056e32ccb09d','5056e33c86eb5'

Here is the jquery code i am using

  1. jQuery(function() {
  2. $('.krudSpace').sortable({
  3.         update: function(event, ui) {
  4.             var newOrder = $(this).sortable('toArray').toString();
  5.             alert(newOrder);
  6.             //five,5056e32ccb09d,5056e33c86eb5
  7.             //'five','5056e32ccb09d','5056e33c86eb5'
  8.             //$.post('saveSortable.php', {order:newOrder});
  9.         }
  10.     });
  11. });
I am trying this
  1. var spl = newOrder.toString().split(",");

  1.             alert(newOrder);

How can have the apostrophes i require on each item?.