This is the code snippet I am working with
$(document).ready(function(){
$("a.btn1").click(function() {
$(this).find("i").toggleClass("fa-thumbs-o-up fa-thumbs-o-down");
});
$("a.btn2").click(function(){
$(this).find("i").toggleClass("fa-smile-o fa-frown-o");
});
$("a.btn3").click(function(){
$(this).find("i").toggleClass("fa-unlock fa-unlock-alt");
});
});
.fa {
font-size: 58px !important;
}
My challenge now is to select only one button at a time without them functioning as Radio Buttons
I have tried various examples but most of them work like Radio buttons
What I need is to use these as anchor tags and allow only one option to be selected at a time
Currently, all three options are getting selected at once
This causes errors when submitting as the score values do not match up correctly