I am facing an issue where the div is not expanding or collapsing upon clicking the + sign. I have tried removing unnecessary scripts but it still doesn't work. Additionally, there is an error in the console:
Uncaught TypeError: $(...).slideReveal is not a function
<div class="card">
<div class="card-header" id="headingOne">
<div class="row" style="margin-top: -15px; height:52px;">
<div class="col-6 pt-3">
<h5 class="font-mobile">Planning Engineer</h5>
</div>
<div class="col-6 pt-3" style="height:auto;">
<h5 class="mb-2 text-right">
<button class="btn btn-link collapsed" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="false" aria-controls="collapseOne">
<h5>+</h5>
</button>
</h5>
</div>
</div>
<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordion">
<div class="card-body" style="height:auto;">
<h5 class="overflow-hidden mt-xs-2">Job Description:</h5>
<ul class="text-justify ul-xs">
// job description details here ...
</ul>
<h5> As our ideal candidate you will have:</h5>
<ul class="text-justify ul-xs">
// candidate requirements listed here ...
</ul>
</div>
</div>
</div>
</div>
Here's the source code of head being rendered.
// main stylesheet and js imports
Updated: Tried to implement a new sequence for the script loading, but the issue persists.
// updated script import sequence