Why Nostr? What is Njump?
2024-07-03 17:57:44

Adrian Roselli on Nostr: I made a bookmarklet to restore the stop/pause controls to embedded `<video>`: The ...

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
Author Public Key
npub10ee2ncgkjq5epjclj9e7f0tardj6smsyyrxe06p02sxjs22pxcyse46keq