Skip to content

Instantly share code, notes, and snippets.

@supersuryaansh
Created July 6, 2024 09:19
Show Gist options
  • Save supersuryaansh/69025bbb21542dda035f5b2ba54c606d to your computer and use it in GitHub Desktop.
Save supersuryaansh/69025bbb21542dda035f5b2ba54c606d to your computer and use it in GitHub Desktop.
Add second button to Divi Full Width Slider.js
<script>
window.onload = function() {
// Code to duplicate the button
const elementToDuplicate = document.querySelector('.et_pb_button.et_pb_more_button');
// Clone the element
const clonedElement = elementToDuplicate.cloneNode(true);
// Update the URL of the cloned element
clonedElement.href = 'https://example.com/#newurl';
// Update the text of the cloned element
clonedElement.textContent = 'Get a Quote';
// Set the left margin of the cloned element
clonedElement.style.marginLeft = '20px';
// Insert the cloned element after the original element
elementToDuplicate.parentNode.insertBefore(clonedElement, elementToDuplicate.nextSibling);
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment