I am using latest version of jquery.alphanum and found one odd issue. i.e. when you paste certain number more than maxDecimalPlaces then after paste the other event i.e. change event is not firing for those elements. Although the change event is working fine without paste.
I suspect this issue is occurred with the paste event used in jquery.alphanum library.
$('#accountBalance').numeric({
maxPreDecimalPlaces : 10,
maxDecimalPlaces : 2
});
$("#accountBalance").on("change", function (e) {
// This works in `FireFox` but NOT WORKING in `Chrome` and `IE`
alert("ok");
});
I am using latest version of
jquery.alphanum
and found one odd issue. i.e. when you paste certain number more thanmaxDecimalPlaces
then after paste the other event i.e.change
event is not firing for those elements. Although the change event is working fine without paste. I suspect this issue is occurred with the paste event used injquery.alphanum
library.Please fix this issue ASAP.