<div id="dvResult">Loading...</div>
<script>
var data = [
{"firstName":"Michael","lastName":"Jackson","SSN":"123456789"},
{"firstName":"Barack","Obama":"Smith","SSN":"124456789"},
{"firstName":"Peter","lastName":"Jackson","SSN":"125456789"}
];
var x = '';
for (i = 0; i < data.length; i++)
{
x = x + data[i].firstName + " " + data[i].lastName + " " + data[i].SSN + "<br/>";
}
document.getElementById("dvResult").innerHTML = x;
</script>
Thursday, October 2, 2014
Real Quick JSON Example
JSON is better to handle than XML. Was using it in a project so thought to post here,
Subscribe to:
Post Comments (Atom)
-
Recently my customers was looking for a solution where on-field guys can search for answers related to their tasks and it was a perfect scen...
-
I have recently contributed to the official SharePoint documentation for developement. Check it out here: https://docs.microsoft.com/en-us...
-
It was announced in SharePoint Virtual Summit in May 2017, a more modern way of content publishing is released called Communication Sites. ...
Official SharePoint Documentation
I have recently contributed to the official SharePoint documentation for developement. Check it out here: https://docs.microsoft.com/en-us...
No comments:
Post a Comment