I am unable to figure out what is the problem with displaying json data..below is the code
var xhrGet1 = dojo.xhrGet({
       url: "Page/",
       handleAs: "json",
       handle: function(response)
       {
       dojo.byId('json-data').innerHTML = response.questions[0];
       }
       });
Html
<div id='json-data'></div>
And my json file looks like this
 {
        "Info": {
            "PURPOSE": "....  ",
            },
        "questions": [
            {
                "ID": 1,
                "Question": "User ID",
                "Information": "",
            }, {
                "ID": 2,
                "Question": "Name",
                "Information": "",
            }
        ],
so on...any ideas??
 
     
     
    