If you have the latest version of jQuery installed, I recommend that you use the "on" method instead of "click", "change" to "live", etc. .... try to attach your event to the document:
$(document).on('change', '.yourItem', function (e) {
});
source
share