[JQuery ASP.NET] How to render an array of objects with JQuery
- by Ricky
Hi guys:
Assume the JSON returned is
{"2010143545":{"info":[1,"soccer"]},
"2010143547":{"info":[0,"Basketball"]}
}
How do I use JQuery to render the array on ASP.NET page? More precisely, what kind of HTML template do I need to set to stuff the JSON with JQuey?
Thanks you.