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.
The problem is
HTML Code:
Hold Cancel Suspend
Jquery Code:
$(document).on("click", ".active_status", function () { var a = $('input[name=active_status]:checked').val(); (OR) var a = $('.active_status:checked').val(); alert(a); });