dharmendr says:
Please explain in more detail.
ok
see I used below code for currency
<script type="text/javascript">
$(function () {
$('#TextBox1').priceFormat({
prefix: '',
thousandsSeparator: ',',
centsSeparator: ',',
limit: 10,
centsLimit: 0
});
});
</script>
when I click on textbox it will show like:
---,---,---
and I can type number and it automatically put( , )(sepratore) between number like: 500,000,000
now I want do same thing for Time I want when I click on text box it will show in textbox --:-- that I can type number and it automatically put( : ) between number like 12:50 (time format)
Best regards
neda