var widgetContent = document.getElementById("donation-button-widget-content"); widgetContent.setAttribute("class", "donation-button-widget"); var donationForm = document.createElement("form"); donationForm.setAttribute("name", "donationButtonForm"); donationForm.setAttribute("method", "post"); donationForm.setAttribute("action", "https://www.goldengiving.com/secure/donation/pup-aid"); var donationButton = document.createElement("input"); donationButton.setAttribute("class", "donation-button-anchor"); donationButton.setAttribute("type", "submit"); donationButton.setAttribute("value", "DONATE"); donationButton.setAttribute("class", "btn btn-primary"); donationForm.appendChild(donationButton); widgetContent.appendChild(donationForm);