<script type="text/javascript">
(function() {
window.onload = function() {
/* Change the variables below */
var sourceCurrencyCode = "AUD";
var targetCurrencyCode = "USD";
var sourceAmount = 2500;
var callToActionLabel = "Get started";
var hideCta = false;
var hideDetails = false;
var affiliateLink = "YOUR_TRACKING_LINK";
var lang = "en";
var width = "580px";
var height = "470px";
/* Do not modify the code below */
var redirectUrlParams = encodeURIComponent("https://wise.com?sourceCurrency=" + sourceCurrencyCode + "&targetCurrency=" + targetCurrencyCode + "&fromCalcWidget=true&sourceAmount=" + sourceAmount);
var redirectUrl = encodeURIComponent(affiliateLink + "?u=" + redirectUrlParams);
var wiseIframeUrl =
"https://wise.com/widget/calculator?sourceCurrencyCode=" + sourceCurrencyCode + "&targetCurrencyCode=" + targetCurrencyCode + "&amount=" + sourceAmount + "&cta=" + callToActionLabel + "&hideCta=" + hideCta + "&hideDetails=" + hideDetails + "&redirectUrl=" + redirectUrl + "&lang=" + lang + "&theme=light"
var wiseIframe = document.createElement('iframe');wiseIframe.frameBorder = 0;wiseIframe.width = width;wiseIframe.height = height;wiseIframe.id = "wise-calc";wiseIframe.scrolling = "no";wiseIframe.setAttribute("allowtransparency", "true");wiseIframe.setAttribute("src", wiseIframeUrl);
document.getElementById("wise-calc-widget").appendChild(wiseIframe);
};
})();
</script>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.