When building a custom video player, it will likely not work for end-users that have decided to disable JavaScript in their web browser. To get around this, it's best to add a fallback that'll allow them to switch over to the web browser's native player. To pull this off, we'll take advantage of the HTML tag known as `details` and `noscript`. ## Detect JavaScript is Disabled First, we need to tell if JavaScript is disabled, we can use the `noscript` tag. Anything used within a `noscript` tag is shown if JavaScript is not present. ```html ``` ## Toggle Button We'll create a button using the `details` tag that'll show the native video player. ```html
Show Native Player
``` ## Full Example

Preview from Zorn v0.7 Development

![Preview](https://ocean.sudovanilla.org/media/gifs/7fea948c65dc3a07.gif) Putting it altogether, with styling: ```html ```