Adrian Roselli on Nostr: I made a bookmarklet to restore the stop/pause controls to embedded `<video>`: ...
I made a bookmarklet to restore the stop/pause controls to embedded `<video>`:
https://adrianroselli.com/2015/01/css-bookmarklets-for-testing-and-fixing.html#VidControls
The function:
```
const vid = document.querySelectorAll('video:not([controls])');
vid.forEach(v => {
v.setAttribute('controls','');
})
```
All it care about is adding the `controls` attribute to videos where it has been removed.
#a11y #accessibility
https://adrianroselli.com/2015/01/css-bookmarklets-for-testing-and-fixing.html#VidControls
The function:
```
const vid = document.querySelectorAll('video:not([controls])');
vid.forEach(v => {
v.setAttribute('controls','');
})
```
All it care about is adding the `controls` attribute to videos where it has been removed.
#a11y #accessibility