Can anyone help me on this, I have the json data that i want to convert into table using javascript or jquery. Here's my sample json data:
{"company_name":"McDonalds","address":"John Street","city":"San Antonio","noemployee":"100"}
I want the table output should look like this:
Company Name Address City Noemployee McDonaldsJohn Street San Antonio 100
Just to clarify "company_name":"McDonalds" = <thead><tr><th>Company Name</th></tr></thead><tbody><tr><td>McDonalds</td></tr></tbody>