Here is my code
var productdetails = {
productcommission: '%%Commission%%',
producttotal: '%%GLOBAL_Price%%',
};
It just passes the values to third parties and this is how the values are displayed in the view source.
var productdetails = {
productcommission: '50',
producttotal: '$200',
};
I want to know how can i remove dollar sign above So that it shows as below in the view source.
var productdetails = {
productcommission: '50',
producttotal: '200',
};