I have a result set returning from a service that gives me the following json
{
\"ThreadCount\":61,
\"GroupList\":[
{\"userName\":\"KLT\",\"count
I noticed your table does not actually have a tbody element. This could be part of your issue.
$('#myTable > tbody').append.....
I would also suggest that you create a string in your $.each() loop and then do the following after your each loop:
$('#myTable > tbody').html(string);
This will reduce the overhead of appending each time you iterate over the array.