// Get the button element by its id
var button = document.getElementById('hs-cta-trigger-button');
// Add a click event listener to the button
button.addEventListener('click', function() {
// Your code to be executed when the button is clicked
console.log('Button clicked!');
// Call your function or execute any code you want here
// For example, you can call a function named myFunction():
// myFunction();
});