Jquery each loop with json array
- by Ben
I'm trying to use Jquery's each loop to go through this Json and add it to a div named #contentHere. The Json is as follows:
{ "justIn": [
{ "textId": "123", "text": "Hello", "textType": "Greeting" },
{ "textId": "514", "text":"What's up?", "textType": "Question" },
{ "textId": "122", "text":"Come over here", "textType": "Order" }
],
…