Hello,
My proficiency with JS is basically copy/paste, but I have a snipped I have used a few times before that works fine on Wordpress, but appearently not on JS.
The snippit below normally works to automatically click on an element as soon as the page loads.
<script>
$("document").ready(function(){
$(".selector").trigger("click");
});
</script>
However it does not appear to work on Unbounce. Does anyone know what the issue might be? I tried it in all three possible locations for a script.