Created
August 1, 2023 18:42
-
-
Save zackeryfretty/c60eb37e3216ea075f8f606d94191f22 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Clickable Columns in Elementor via CSS class '.clickable-col' | |
const clickableCols = document.querySelectorAll('.clickable-col'); | |
if(clickableCols.length > 0){ | |
clickableCols.forEach(col => { | |
const link = col.querySelector('a'); | |
col.addEventListener('click', () => { | |
window.location.href = link; | |
}); | |
col.style.cursor = 'pointer'; | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment