This question is locked. New answers and comments are not allowed.
Jquery ".live()" does not seem to be working on 'valueChange' event of combo-box.
following is my code that doesn't work.
$(this).find('.t-dropdown input').live('valueChange', function (e) {
alert("combo box value changed");
};
});
Although, the same works when i change to jquery ".bind"
$(this).find('.t-dropdown input').bind('valueChange', function (e) {
alert("combo box value changed");
};
});
Note: I have upgrade Jquery and telerik controls.
following is my code that doesn't work.
$(this).find('.t-dropdown input').live('valueChange', function (e) {
alert("combo box value changed");
};
});
Although, the same works when i change to jquery ".bind"
$(this).find('.t-dropdown input').bind('valueChange', function (e) {
alert("combo box value changed");
};
});
Note: I have upgrade Jquery and telerik controls.