Hi,
Is there any method to toggle the aside menu from another button? I want to minimize the aside menu on some pages with function.
Thanks
regarding this topic I want to expand the div ID "kt_signin_email_edit" but it' dosen't seems to work.
<div data-kt-toggle="true" data-kt-toggle-state="active" data-kt-toggle-target="#kt_signin_email_edit" data-kt-toggle-name="toggle-name" class="ms-auto">
<button class="btn btn-light btn-active-light-primary">Cambiar E-mail</button>
</div>
any help?
FYI: I am using just using html code to try it.
Thanks
Hi,
You can refer to Bootstrap KTToggle API documentation here.
var toggleElement = document.querySelector("#kt_toggle_example_1");
var toggle = KTToggle.getInstance(toggleElement);
toggle.enable();
toggle.disable()
toggle.toggle();