Hi Everyone,
I am trying to hide some fields on a portal form based on an option selected on a multiple choice column.
I'm having trouble getting the selected value of the multiple choice column.
Here's my code:
$(document).ready(function () {
var referredBy = $("#new_referredby").change(function () { FieldChanged(); });
});
FieldChanged = function () {
console.log("Hit Change" + referredBy);}
This code works when I have a field that is a text field but doesn't when it's a multi- select.
If anyone has any suggestions on how to get the value of the multiselect please let me know.
Thanks !