I am trying to write a generic JavaScript that would rename the collapsible link when clicked from "Expand" to "Hide" and vice versa.
I wrote the below code for that in jQuery:
$(".collapse").collapse();
$(".collapse").on('show', function() {
$("a[data-target='#"+$(this).attr('id')+"']").text($("a[data-target='#"+$(this).attr('id')+"']").attr('data-on-hidden'))
});
$(".collapse").on('hidden', function() {
$("a[data-target='#"+$(this).attr('id')+"']").text($("a[data-target='#"+$(this).attr('id')+"']").attr('data-on-active'))
});
which interacts with the following HTML:
<div class="collapse in" id="collapse-fields">
Expandable content
</div>
<a href="#" data-toggle="collapse" data-target="#collapse-fields"
data-on-hidden="Hide" data-on-active="Expand">Expand</a>
I am new to jQuery and I was wondering if my code is written in a right way or if there is a better approach to write such a function?