Skip to content

Instantly share code, notes, and snippets.

View thevahidal's full-sized avatar
💭
Sleeping

Vahid Al thevahidal

💭
Sleeping
View GitHub Profile
@thevahidal
thevahidal / buynow_calculator.js
Created February 12, 2024 14:10 — forked from mahdizojaji/README.md
buynow paid calculator
var total = 0;
const paid_amounts = document.getElementsByClassName("purchase-amount-number");
var persianNumbers = [/۰/g, /۱/g, /۲/g, /۳/g, /۴/g, /۵/g, /۶/g, /۷/g, /۸/g, /۹/g];
var arabicNumbers = [/٠/g, /١/g, /٢/g, /٣/g, /٤/g, /٥/g, /٦/g, /٧/g, /٨/g, /٩/g];
fixNumbers = function (str)
{
if(typeof str === 'string')
{