Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
Hi,
I've a issue with this variable on percentageCrawler function:
var percentageProdSupp = crawler * crawler_value;
crawler return a object and that not working, I fix with
var percentageProdSupp = parseInt(crawler) * crawler_value;
But I don't know what is the root issue