<div class="pricing-toggle">
<span id="monthly" class="label active">Monthly</span>
<div class="toggle-bg" onclick="togglePricing()">
<div class="toggle-circle" id="circle"></div>
</div>
<span id="yearly" class="label">Yearly <span class="discount">-20%</span></span>
</div>
Back to Snippets
Pricing Plan Toggle Switch JS
Allow users to switch between monthly and yearly pricing with this smooth toggle component. A simple JavaScript function updates the active state, which helps you upsell annual plans effectively.
393