Split array value and assign to each variable

Split array value and assign to each variable

Hi,
 
I have an Array, in which I am adding the items in the below format:
 
Test#12/10/2013# http://url
Test1 #13/05/2014# http://url
 
I want to split the data based on "#" and assign to a asp.net gridview using jQuery. I have tried the below, but not sure, how to pass the data to gridview.
Below is the code used:
 
  1.  var newdata = new Array();
    // newdata.push(items) // contains format "Test#12/10/2013#http://url"
      
    var newArray = newsdata.split('#');


  2.     for (var i = 0; i < newArray.length; i++) {
            $("#GridView").append(); // not sure how to append all the three items
           
        }


Thanks