-1
Good evening, I’m finding it difficult to work with my form’s Radio Buttons at Angular. I need to take the values of my radio Buttons, but no solution found here works, neither with jquery nor with pure javascripty. Follows the code:
<mat-radio-group class="posicao" name="G>
<mat-radio-button class="margem" name="G1" value="1">1</mat-radio-button>
<mat-radio-button class="margem" name="G2" value="2">2</mat-radio-button>
<mat-radio-button class="margem" name="G3 value="3">3</mat-radio-button>
I noticed the open quotation marks, I even edited to try to correct, but although I write correctly, for some reason I get like this, the same way n ta appearing the closing tag of mat-radio-group, but vlww by the correction :)
– JV M
Tested using radios with the same name?
– Guilherme Corrêa Peralta
My problem is that I can’t access the property. value in my javascript, for some reason it returns an error, saying that the property . value does not exist.
– JV M