var tableToExcel = (function() {
var uri = 'data:application/vnd.ms-excel;base64,'
, template = '
'
, base64 = function(s) { return window.btoa(unescape(encodeURIComponent(s))) }
, format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) }
return function(table, name) {
if (!table.nodeType) table = document.getElementById(table)
var ctx = {worksheet: name || 'Worksheet', table: table.innerHTML}
window.location.href = uri + base64(format(template, ctx))
}
})();
loadtablepage(validasiToken);
function loadtablepage(token){
$(document).ready(function(){
$.ajax({
type: 'POST',
dataType: 'json',
url: baseURL + '/api/loadtableother',
data: {
token : token,
},
success:function(result){
let data = result.data;
let counter = 1;
for(z in data){
var cols = "";
cols += ''
cols += ''+counter+' | '
cols += ''+data[z].ip_address_client+' | ';
cols += ''+data[z].nodeother+' | ';
cols += ''+data[z].date+' | ';
cols += ''+data[z].time+' | ';
cols += '
'
$("#tbluserwebother").append(cols);
counter++;
}
}
});
})
}