Hello Everyone,
Im trying to get the number value of a price without the £, so I can use something like the below to show a new price based on quantity
$('#quantity').bind('click keyup',function(){
var tot = $('#price').val() * this.value;
$('#total').text(tot);
});
Any ideas?
Thanks
Keith
Im trying to get the number value of a price without the £, so I can use something like the below to show a new price based on quantity
$('#quantity').bind('click keyup',function(){
var tot = $('#price').val() * this.value;
$('#total').text(tot);
});
Any ideas?
Thanks
Keith
Comment