I'm using an <ion-footer>
tag on Ionic4 to sits content at the bottom of the page: https://ionicframework.com/docs/api/footer
Ionic automatically add a role="contentinfo"
attribute on the <ion-footer>
tag.
The contentinfo landmark role is used to identify information repeated at the end of every page of a website, including copyright information, navigation links, and privacy statements (https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Contentinfo_role)
In my case, I'm not using <ion-footer>
to display information repeated, so to be more accessible, I'd like to delete this attribute, or replace it with role="presentation"
.
Is it possible to change the value of this attribute on <ion-footer>
tag?
Thank you for your help.