I'm trying to add the PayPal Smart Payment button to my website. The HTML container for rendering the button is received through an AJAX request with the paypal.Buttons.render()
method called onsuccess
of the AJAX request. Now everything works well, except the button takes some time render on the site and become active. I'd like to hint my users that the button is rendering or loading, so they don't stay in the dark when the AJAX request returns and no button is shown. Is there a way to know when the button has completely rendered?
$.ajax({
url: example/foler,
data: data,
success: success(data)
});
function success(data) {
// data = <div id='paypal-button-container'></div>
paypal.Buttons().render('#paypal-button-container');
// Display "Button Loading..."
// Find out if button has completely rendered, then turn off "button loading..."
}