Topic: Accessibility: Popovers to be closed with a keyboard and visible to screeenreaders
Popovers - we would like a closing button to be serviced with a keyboard and that it is possible to close it with the 'escape' key.
The closing button should also be visible to screenreaders.
popovers
Add comment
Piotr Glejzer
staff answered 7 years ago
Hi,
Can you try this JavaScript code?
$(function () {
$('[data-toggle="popover"]').popover()
$(document).keyup(function (event) {
if (event.which === 27) {
$('[data-toggle="popover"]').popover('hide');
}
})
})
Best,
Piotr
FREE CONSULTATION
Hire our experts to build a dedicated project. We'll analyze your business requirements, for free.
Status
Answered
Specification of the issue
- User: Pro
- Premium support: No
- Technology: MDB jQuery
- MDB Version: 4.5.9
- Device: Any
- Browser: Any
- OS: Any
- Provided sample code: No
- Provided link: Yes
Tags
Related topics