On Sep 30, 6:27 am, "factoringcompare.com"
<firstfacto...@googlemail.com> wrote:
> Thank you. JQuery is completly new to me. OK how des the belo code
> look?
>
> <script>
>   $(document).ready(function(){
>
>     $("#test'").blur(function () {
>          $('#test').val($('#test').val().replace(/,/g,''));

You could do:

  this.value = this.value.replace(/,/g,'');

and save yourself a few keystrokes (and a gazillion CPU cycles) :-)


--
Rob

Reply via email to