Make column, section and any widget clickable Elementor

On the right is a column >

To make the colum or any widget clickable Set the ID of column &gt; Advanced &gt; CSS ID Set "click-column" Use the code below, and put AFTER the column <pre data-lang="JavaScript"><code>&lt;script&gt; document.getElementById("click-column").onclick = function() {myFunction()}; function myFunction() { window.open("https://jaybranding.com/code", "_blank"); } &lt;/script&gt; &lt;style&gt; /You can add style to change icon to the hand / #click-column{ cursor: pointer; } &lt;/style&gt;</code></pre>