function ajax_get_poductivity(that) { console.log('fatkur.js > ajax_get_poductivity'); prev_name = that.innerHTML; loading3(that); const data = JSON.stringify({ nav: 'get_productivity', bulan: that.value, token: localStorage.getItem('token'), }); fetch('route.php', { method: 'POST', headers: { 'Content-Type': 'application/json; charset=UTF-8', }, body: data, }).then(response => { if (response.ok) { response.text().then(response => { // let res_arr=JSON.parse(response); console.log(response); }); } }); return false; }