
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
flickity-hash
Advanced tools
Select Flickity slides with links
<a href="#cell2">View cell 2</a>https://example.com/#cell2Add hash.js to your scripts.
<script src="https://unpkg.com/flickity-hash@2/hash.js"></script>
npm: npm install flickity-hash
Yarn: yarn add flickity-hash
Enable hash behavior by setting hash: true in Flickity options.
// jQuery
let $carousel = $('.carousel').flickity({
hash: true,
});
// vanilla JS
let flkty = new Flickity( '.carousel', {
hash: true,
});
<!-- HTML -->
<div class="carousel" data-flickity='{ "hash": true }'>
...
</div>
Add id attributes to cell elements.
<div class="carousel">
<div class="carousel-cell" id="carousel-cell1">...</div>
<div class="carousel-cell" id="carousel-cell2">...</div>
<div class="carousel-cell" id="carousel-cell3">...</div>
</div>
Hash links will select slides on click.
<a href="#carousel-cell2">View cell 2</a>
const Flickity = require('flickity');
require('flickity-hash');
let flkty = new Flickity( '.carousel', {
hash: true,
});
By Metafizzy 🌈🐻
FAQs
Select Flickity slides with links
The npm package flickity-hash receives a total of 723 weekly downloads. As such, flickity-hash popularity was classified as not popular.
We found that flickity-hash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.