The problem statement is simple. I need to see if user has selected a radio button from a radio group. Every radio button in the group share same id....
  • April 26, 2022
  • 0 Comments
I try to check a radio button with jQuery. Here’s my code: <form> <div id='type'> <input type="radio" id='radio_1' name="type" value="1" /> <input type="radio" id='radio_2' name="type" value="2" /> <input type="radio"...
  • April 16, 2022
  • 0 Comments