I have a question where users can select yes or no. I have written a click event which is not firing for the "first time". if I click on div, it works, it also works in Chrome. Below is my code.
$('#rad1').on('click', function () {
var check = $(this).children('label').first();
if (check.hasClass('yestxt')) {
check.removeClass('yestxt').addClass('checked');
$("#rad2").children('label').first().removeClass('checked').addClass('notxt');
}
else {
check.removeClass('checked').addClass('yestxt');
});
$('#rad2').click(function () {
if (check.hasClass('notxt')) {
check.removeClass('notxt').addClass('checked');
$("#rad1").children('label').first().removeClass('checked').addClass('yestxt');
check.removeClass('checked').addClass('notxt');