@<Tim> here it is https://jsfiddle.net/8Lchpnfg/2/
Test your JavaScript, CSS, HTML or CoffeeScript online with JSFiddle code editor.
if (data.success) {
const newRow = document.createElement('tr');
newRow.innerHTML = `
<!--<td>${data.data.query}</td>-->
<td>${ip}</td>
<td>${data.data.country} (${data.data.countryCode})</td>
<td>${data.data.regionName} (${data.data.region})</td>
<td>${data.data.city} (${data.data.zip})</td>
<td>LAT ${data.data.lat} LON ${data.data.lon}</td>
<td>${data.data.isp}</td>
<td>${data.data.mobile}</td>
<td>${data.data.proxy}</td>
<td>${data.data.hosting}</td>
`;
resultsTbody.appendChild(newRow);
//resultsTbody.innerHTML = newRow;
}