Today I learned how to create a simple collapsible search box. This kind of utility is available in many websites. This project taught me how to use the Toogle method to toggle different experiences based on user input.
btn.addEventListener('click', function(){
search.classList.toggle('active')
input.focus()
})
Category | HTML / JS / CSS |
Credits | 50 Projects in 50 days |
Date | February 2nd, 2025 |
Codepen | Click here |