Do you know if it\'s possible to create interactive web pages in Go? For example, having one or multiple buttons, or a combo box that refreshes the page with the data being
I found the long answer to my own question. It is not possible to directly program an interactive website with only Go BUT using GopherJS(https://github.com/gopherjs/gopherjs) (its a compiler from Go to JS) and Go it is very possible to create fully interactive websites. Although this undertaking is advanced and there is not allot of information available at this moment(2018/09/25)
I thank you all for your efforts (good and bad).
thank you for this part "For the former, there's GopherJS. GopherJS compiles Go code to pure Javascript code, so it's not really a web framework, but you can write client side code in Go with that. You still have to take care of server-side code and the communication between them." Helped allot,