lukas.fink
12/27/2017, 1:48 PMkotlinx.html
in javascript to get the value from an input
field. Is there a more elegant solution than doing it this way?bashor
12/28/2017, 4:24 PMval articleName = document.getElementById("articleName") as HTMLInputElement
console.log(articleName.value)
lukas.fink
12/29/2017, 1:19 PM