Create Fundraiser Component
Drop this component into any webpage to add the ability to create a fundraiser directly on your website.
benefit
benefit
benefit
benefit
benefit
More content here.
Component Example
Component Code Snippet
Show Snippet<div id="fundraiser-create-example">
<div data-dntly="dntly-fundraiser-create-component">
<div data-dntly="fun-create-header"></div>
<div data-dntly="fun-create-nagivation"></div>
<div data-dntly="fun-create-form-container"></div>
<div data-dntly="fun-create-confirmation-container"></div>
</div>
</div>
<link rel="stylesheet" href="https://cdn.donately.com/dntly-components/2.2/donately-components.css">
<script src="https://cdn.donately.com/dntly-components/2.2/donately-components.min.js" async="true"></script>
<script type="text/javascript">
dntlyReady("DonatelyComponents", function () {
const configOptions = {
options: {
"donately-id": "act_2895f06d28ce",
"account-subdomain": "futurenow",
"campaign-id": "cmp_ff791ac58cec",
"build-page": "fundraiser-create",
},
afterComponentLoad: function (parentElement, componentInstanceKey) { }
};
DonatelyComponents.componentHandler.buildComponents(configOptions);
});
function dntlyReady(name, callback) {
window.setTimeout(function() {
if (window[name]) {callback()}
else {dntlyReady(name, callback)}
}, 10);
}
</script>