I have the following function on my .html page:
function Success(data)
{
var obj;
obj=JSON.parse(data);
document.write(obj);
}
that returns the objects as Hi,Hello,How,Are,You,Me,They,Them I would like to achieve the following : Like this
How do I do this?