Stopping Webflow Interactions
Webflow interactions are usually implemented with event functions.
Sometimes we may want to stop the behavior of an element that has some Webflow interaction.
For example the "Webflow Interaction" button pulses when the mouse hovers over it.
To stop this Webflow interaction from executing to we use: https://raw.githubusercontent.com/finsweet/jqueryCourse/main/jquery%20events/ex3.js?actionable=true
$(document).ready(function(){
XT1
});
</script>
Live demo
<style>#alertButton{margin-bottom: 1rem;}</style><div id="minidivpage" class="example-live"><a id="alertButton" href="#" class="w-button">Button alert</a><div class="div-block-3"><a id="interactionButton" href="#" class="ix-btn w-button ">Webflow Interactions</a><h4 class="heading-4">Custom adjustable bar:</h4></div><div class="div-block-4"><div class="div-block-5"></div></div></div>
$(document).ready(function() {
XT1
});
</script>