This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var getTableDataAJAX = function() { | |
var getTableData = new XMLHttpRequest(); | |
getTableData.onreadystatechange = function() { | |
if(getTableData.readyState === 4) { | |
var tableInfo = JSON.parse(getTableData.responseText); | |
var tableHeading = tableInfo.tableHeading; | |
var tableCellsPets = tableInfo.tableCellsPets; | |
var tableCellsPeople = tableInfo.tableCellsPeople; |