Chartjs-Javascript OnChange to update data

0👍

I don’t think onchange works for an input, at least the way you have it written.

You can use jQuery’s .change like so though:

$('input[name=valueToSocietyScore]').change(function() { ... });

Leave a comment