Skip to navigation
Javascript to create an url request
29.03.19
inv_download.onsubmit=function() { let y = document.getElementById('api_year'); let year = y.options[y.selectedIndex].value; let m = document.getElementById('api_month'); let month = m.options[m.selectedIndex].value; let d = document.getElementById('api_details'); let details = d.options[d.selectedIndex].value; let filter = ''; if(details === 'short') { filter = '&short=1'; } let url = "http://api.foo.bar?f=csv&month=" + month + "&year=" + year + filter; window.location.assign(url); return false; };
https://www.w3schools.com/jsref/met_loc_assign.asp
Reply
Anonymous
Information Epoch 1732645907
Store numerical data in flat files.
Home
Notebook
Contact us