Grabbing value of checked radio button - jquery
Ran into issue of trying to grab which radio button is selected without having to submit a form. because if you just try to look for the radio button with a certain name, it returns the first one it sees in the DOM. I want to know which one was selected.
$('input[name=radioName]:checked').val()











