Hello,
I’m switching a project to simple layout and one of my custom javascript isn’t working any more.
part of the code is this one :
this.questionclick = function (event, element)
{
var selectedDisruptions = [];
var EligibleDisruptions = [];
var isdisrupt = '';
jQuery('#QID57 input:checked').each(function(btn)
{
if (this.id.split('~')[2] != '1') {
selectedDisruptions.push(choiceDict[this.id.split('~')[2]]
isdisrupt = 'Y';
}
if (this.id.split('~')[2] == '1') {
isdisrupt = 'N';
selectedDisruptions.push(choiceDict[this.id.split('~')[2]])
}
});
};
The jquery isn’t working anymore evenif i add “<script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>” in the header part.
What do I need to change here “jQuery('#QID57 input:checked').each(function(btn)“.
Thanks advance
regards