Hi all,
On my form I have three radio buttons. Each radio button triggers a different field rule. If I click the radio buttons manually, the fields rules trigger and work as expected.
The problem I'm having is when I try to use JQuery to set and trigger each radio button, only the first one will work. It doesn't matter which of the three I trigger first, only that one will trigger:
$('.radioA input').val(['Yes']).change(); $('.radioB input').val(['Yes']).change(); $('.radioC input').val(['Yes']).change();
I've noticed that if I seperate the .val(['Yes']) functions, I can set all the radio buttons to Yes but I can still only run the .change for one (the other calls are ignored).
Any clue on how to get them all to update?