Posts by R MG • 11 points
2 posts
-
-1
votes3
answers13847
viewsA: Pick up value from a radio button
Hello try instead of: alert(document.getElementById("seguro").value); utilise: var seg = document.querySelector('input[name=seguro]:checked').value alert(seg) or even:…
javascriptanswered R MG 11 -
0
votes4
answers3943
viewsA: Calculate mail freight for various products
Good evening, resurrecting deceased, rsrsrsrs but I will post my contribution q may be to help someone in the future. I’m developing a system for a natural products company, they have teas,…