I have a form with some input and select boxes, each has class=\"myClass\". I also have the following script:
class=\"myClass\"
$(document).ready(function() {
The only one that worked for me was unbind before the change check.
$(".select2Component").unbind(); $(".select2Component").change(function() { //code });