Creating your own custom button for version 5.x.x and above
Creating a custom button with ID
You can create a custom button with the ID INDmenu-btn in your HTML or application
code. The widget will automatically use this button instead of the default one.
Create your own button in the DOM, with the same ID as our
original button: INDmenu-btn.
Ensure your button is placed before our script in the DOM to override our
button and trigger it behind the scenes once clicked.
<body>
...
...
</body>
Hiding the button by default
In your implementation code, add the hideBtn flag with the value true.
This will ensure that the button is hidden by default.
Provide your new button the following onclick method:
This method will open the accessibility menu.
reating your own custom button for Version 4.x.x and below
Create a <button> of your own with the ID of our button INDmenu-btn.
It will add our click event to your button, and will not create a new button.
IMPORTANT : Make sure the button exists in the page before our script loads!
otherwise, it won't work.
Create a <button> of your own and hide our button with the following CSS: