Links

Installments Loader

Add a line to your JavaScript to customize the loader that shows if there is any pause while loading the installment picker options from Splitit (this isn't the payment processing loader). You can specify a message to be displayed, loader: "message", specify some HTML to be displayed, loader: "<h1>my headline</h1>", add a CSS selector to inject, loader: "#mycssid", or even include a callback function, loader: function(){}.
Customize your loader as follows:
<script>
var flexFields = Splitit.FlexFields.setup({
fields: { ... },
...
loader: //add loader code
}).ready(function () {
...
});
</script>

Last modified 7mo ago