I have retrieve JSON from my controller of asp.net mvc :
{"ja":
[
{"Name":"ABC1","PictureName1":"my image name1","ID":1},
{"Name":"ABC2","PictureName2":"my image name2","ID":2},
.......
]}
In my view, I create one array in jquery :
var list_lastpage = [];
And I want to push all the element of my JSON to my new array that I just creat.
Could anyone tell me, how can I push and display the JSON(ja) to the array (list_lastpage)?