Checkout Pages
<div id="pabbly_checkout"></div>
// Function to dynamically load the script
function loadPabblyScript() {
var script = document.createElement('script');
script.src = 'https://payments.pabbly.com/api/checkout/embed.js?_p=63558XXXXX2daXXXc39f';
script.async = true; // Load the script asynchronously
document.body.appendChild(script);
}
// Load the script after the page has fully loaded
window.addEventListener('load', loadPabblyScript);
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div id="pabbly_checkout"></div>
<script>
// Function to dynamically load the script
function loadPabblyScript() {
var script = document.createElement('script');
script.src = 'https://payments.pabbly.com/api/checkout/embed.js?_p=63558XXXXX2daXXXc39f';
script.async = true; // Load the script asynchronously
document.body.appendChild(script);
}
// Load the script after the page has fully loaded
window.addEventListener('load', loadPabblyScript);
</script>
</body>
</html>