Forum Discussion
_anomDiebolt_
8 years agoQrew Elite
With the field displayed as options this code works:
$("#_fid_6")
.on("change", function() {
console.log(this.value)
});With the field displayed as radio buttons this code works:$("input[type=radio][name=radio_fid_6]")
.on("change", function() {
console.log(this.value);
});I should note that the HTML QuickBase spits out for the radio buttons is malformed and produces this message in the console: