Slider Text Box

Slider Text Box

I am using a slider with a range. Everything works correctly except that when I type into the textboxes the number I type gets repeated several times.  So for example, if the default text is $842, and I type in a '3' to make it $8432 the value jumps to $8,433,333,333. or something like that.

I do format the price like this:
$('#Slider').prev('.SliderDetails').children('.val1').priceFormat({
        prefix: '$',       
        thousandsSeparator: ',',
        centsSeparator: '',
        centsLimit: 0
    });

Any thoughts?