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() {
For me - I had written the on change event inside a function. Moving it to $(document).ready(function () {}); solved my case.
on change event
$(document).ready(function () {});