Skip to content

Instantly share code, notes, and snippets.

@zackeryfretty
Created August 1, 2023 18:42
Show Gist options
  • Save zackeryfretty/c60eb37e3216ea075f8f606d94191f22 to your computer and use it in GitHub Desktop.
Save zackeryfretty/c60eb37e3216ea075f8f606d94191f22 to your computer and use it in GitHub Desktop.
// 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