Closed yairark closed 7 years ago
Based on documentation
Which documentation are you referring to?
use HTML input events
Do you mean, in a callback for "input" events, you want to access the input value?
Is there no golang alternative to using a .value in JS terms?
Are you referring to the value
field of an HTML input element?
If so, there is one:
https://godoc.org/honnef.co/go/js/dom#HTMLInputElement.Value
Is that what you're looking for?
That's exactly what I was looking for lol! Thanks!
Based on documentation it looks be that you would have to use HTML input events to gather information from input fields. Is there no golang alternative to using a .value in JS terms?