Select which option you'd like to display on your finance page and we'll provide you a customized code snippet to embed on your site.
No Interest Plans
Equal Pay Plans
Amounts to Display
";
document.getElementById('resultBox').innerHTML = iFrameSnippet;
var copyText = document.getElementById("resultBox");
copyText.select();
copyText.setSelectionRange(0, 99999); /* For mobile devices */
/* Copy the text inside the text field */
document.execCommand("copy");
/* Alert the copied text */
alert("Copied the text: " + copyText.value);
}
function OpenHTMLInNewWindow() {
var url = CalculateURL();
window.open(url, '_blank');
}