I have a html radio button, but I want to know how can I get a value from it. (I'm working on Electron)
Here is my Radio code
<label class="container">Ne plus afficher cette page au lancement.<input type="checkbox" unchecked="uncheck"><span class="checkmark"></span>
Basically I want to call a funtion if the box is checked.
for exemple
Function typeFunction(){
//load a window (Not sure if this is right
mainWindow.loadFile('index.html')
}