exhtml
7/14/2017 - 9:06 AM

'Change' event for radiobuttons

'Change' event for radiobuttons

//on change - the event is fired for each radio button
//on toggle - the radio button that is being activated
$('input:radio[name="emailLang"]').on('toggle', function(){
    var self = $(this);
    console.log(self.val());
});