I'm trying to use the beautiful Editable Invoice(http://css-tricks.com/editable-invoice-v2/#comment-66016) , but I'm trying to use it with Euros. So I changed every $ into a € (not the one for jquery ofcourse) but no, everythime i change quantity etc it says N/A. Can you please help me how to change this??
I'm trying to use the beautiful Editable Invoice(http://css-tricks.com/editable-invoice-v2/#comment-66016) , but I'm trying to use it with Euros. So I changed every $ into a € (not the one for jquery ofcourse) but no, everythime i change quantity etc it says N/A. Can you please help me how to change this??
Thank you
$('#subtotal').html("$"+total);
$('#total').html("$"+total);
Change to
$('#subtotal').html("E"+total);
$('#total').html("E"+total);
Where the $ is in quotes means it is a string and the + concatenates it to the variable total.
Hope that helps