No JS detection
utility
Include this snippet directly in your <head> along with adding class .vf-no-js to your <html> (<html class="vf-no-js">).
If JS is enabled in a user's browser, .vf-no-js
will be swapped to .vf-js
.
This method allows using CSS to conditionally show content.
.vf-no-js .js-is-not-on {
/* SHOW block that says you need js to use this site */
}
.vf-js .js-is-not-on {
/* HIDE block that says you need js to use this site */
}
Variants
HTML
<script >
(function (H ) {
H.className = H.className .replace (/\bvf-no-js\b/ , 'vf-js' )
})(document .documentElement );
</script >
Examples
Changelog
Changelog
1.2.3
1.2.2
1.2.1
1.2.0
Update node-html-parser to 5.1.0
Use eleventy v1.0.0-beta.8
https://github.com/visual-framework/vf-core/pull/1257
1.1.16
Utilise new vf-navigation--on-this-page
.
Update project boilerplate links at https://stable.visual-framework.dev/building/
1.1.13
Documentation updates
New release
1.1.12
Update milestones and roadmap.
1.1.11
Add ELIXIR banner to example EMBL-EBI page.
https://stable.visual-framework.dev/patterns/boilerplate-generic-embl-ebi/
https://github.com/visual-framework/vf-core/pull/1615
1.1.7
Fixed issue of overlapping menu on VF components site
https://github.com/visual-framework/vf-core/issues/1518
1.1.6
1.1.2
Implements updated vf-search markup.
Changes a few pages on how it works with nunjucks and markdown.
1.1.0
updates Design Tokens homepage.
adds neutral colour tokens
adds 'status banners' for components in the documentation page.
Adds the form options as their own set of components in the list.
https://github.com/visual-framework/vf-core/pull/1390/files
Updates to use 11ty 0.12.1
https://github.com/visual-framework/vf-core/pull/1435
1.0.24
changes the vf-intro
so it's a white background, removes the padding.
changes the links in vf-intro
to be the 'correct' buttons.
1.0.23
small change to cards on homepage
1.0.18
1.0.17
1.0.16
1.0.13
dependency bump
adds roamap and consultation docs
1.0.12
design token documenation now lives in the component libary
1.0.7
1.0.6
begin to make more pattern/boilerplate guidance
minor templating updates
1.0.5
1.0.4
uses vf-favicon
adds meta attributes
1.0.3
run vf-component-assets:everything
on local dev
remove reference to removed /css/app.css
1.0.2
Add 404
Fix component CSS generation
1.0.1
Also generate per-component CSS with vf-css:generate-component-css
1.0.0
Initial release to be used with vf-core 2.2.0
Assets
File system location: components/vf-no-js
Find an issue on this page?
Propose a change or discuss it .