(funtion() { console.log('jsonCap.js is running...'); }()); function captureJSON() { var xhr = new XMLHttpRequest(); xhr.onload = function() { if (xhr.status >= 200 && xhr.status < 400) { var div = document.getElementById('capturedJSON'), content = '', respObj = JSON.parse(xhr.responseText), len = respObj.length, i; console.log(xhr.responseText); content += '
| Company | '; content += 'First Name | Last Name | Title |
|---|---|---|---|
| ' + respObj[i].Company + ' | '; content += '' + respObj[i]['First Name'] + ' | '; content += '' + respObj[i]['Last Name'] + ' | '; content += '' + respObj[i].Title + ' |