I'm having an issue with a function I found online for the website I'm making for a client. You can check it at the following link https://synth-form.com/?page_id=1394. The function comes to action when you click on the blade model (there is model 1 and 2) and basically shows the section underneath with the specific specs for each product.
The problem as you can see is when you click on one and then on the other one, the section adds below the one already opened.
I need the previously section opened to close automatically when you click on the other one.
Here the code I have used to achieve the result.
<script>
document.addEventListener('DOMContentLoaded', function() {
jQuery(function($){
$('.showme').click(function(){
$(this).closest('.elementor-section').next().slideToggle();
$(this).toggleClass('opened');
});
});
});
</script>
<style>
.showme > div > div > a , .showme > div > div > div > i , .showme > div > div > img{
cursor: pointer;
-webkit-transition: transform 0.34s ease;
transition : transform 0.34s ease;
}
.opened > div > div > div > i , .opened > div > div > img{
}
</style>
And then I gave to the section the CSS ID show me. For the BLADE 2, I have copied and pasted the javascript function and named it showme2.
Is there anyone who can help me? I don't have any knowledge in Javascript.
Thanks in advance
Here is an example:
JavaScript:
HTML:
Or check out the live demo: JSitor - Live Demo