I am working with dynamically generated radio buttons that have been given ids. However, when I attempt to retrieve the value, I encounter an issue.
function updateAO(id2) {
var status = $('input[name=id2]:checked').val();
alert(status);
}
Currently, it prints as undefined. If anyone can provide guidance on how to successfully retrieve this value, I would greatly appreciate it. Thank you in advance!!