hi
I use the below codes for separating number with thousand sign
The problem is when I open the website with the cellular phone I can't type a number in the Persian language into the textbox I should insert a number in the English language
what should I do?
<script type="text/javascript">
$(function () {
ApplyThousandSeparator();
});
function ApplyThousandSeparator() {
$('#Txtvadie2').priceFormat({
prefix: '',
thousandsSeparator: ',',
centsSeparator: ',',
limit: 12,
centsLimit: 0
});
</script>
best regards
Neda