Why do I get Uncaught type error: undefined is not a function"""
I have no J Query in my page
Here is my code:
function CDec(Currency) {
    var number = Currency.replace(/[^0-9\.]+/g,"");
    return number;
}
Calling of the function
SellPrice.value = "$" +  CurrencyFormat(CDec(ListPrice.value * (1 + CDec(Markup.value))) * CDec(Mutiplier.value));
and
Markup.value =   CurrencyFormat(100 * (CDec(SellPrice.value)-CDec(Netcost.value)) / CDec(Netcost.value)) + "%" 
 
     
     
     
    