jchambers wrote:

This will work.

        $("input[type='text']:order").keyup( function() {
                var v = $(this).val().replace(/\D/g,'');  // removes non numbers
                $('#total_buyed').val( v * 2.75 );
        });


Good luck,
Jon


Thanks a lot, works perfectly

--
Saludos
ReynierPM

Reply via email to