Skip to content

Instantly share code, notes, and snippets.

@pxpc2
Created September 25, 2023 18:56
Show Gist options
  • Save pxpc2/dd6519baf45185af14c45a320d3852d3 to your computer and use it in GitHub Desktop.
Save pxpc2/dd6519baf45185af14c45a320d3852d3 to your computer and use it in GitHub Desktop.
elementor abrir areas
<script>
jQuery(document).ready(function($) {
$(".empresarialButton").click(function() {
$(".tributarioContent, .superioresContent").hide();
$(".empresarialContent").toggle();
});
$(".tributarioButton").click(function() {
$(".empresarialContent, .superioresContent").hide();
$(".tributarioContent").toggle();
});
$(".superioresButton").click(function() {
$(".empresarialContent, .tributarioContent").hide();
$(".superioresContent").toggle();
});
$(".hide-tributario").click(function() {
$(".tributarioContent").hide();
})
$(".hide-empresarial").click(function() {
$(".empresarialContent").hide();
})
$(".hide-superiores").click(function() {
$(".superioresContent").hide();
})
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment