Skip to content

Instantly share code, notes, and snippets.

@memetican
Created October 3, 2023 21:02
Show Gist options
  • Save memetican/46ff5f23f4c9b9b08adba8d8e01a93cb to your computer and use it in GitHub Desktop.
Save memetican/46ff5f23f4c9b9b08adba8d8e01a93cb to your computer and use it in GitHub Desktop.
Shopify + Webflow
<script>
document.addEventListener('DOMContentLoaded', (event) => {
const tabs = document.querySelectorAll('[data-w-tab]');
tabs.forEach(tab => {
tab.addEventListener('click', () => {
setTimeout(() => {
window.dispatchEvent(new Event('resize'));
}, 200);
});
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment