I'm a self-taught Front End & JS Dev and professional learner with accessibility expertise. I'm passionate about breaking down concepts into relatable concepts, making it more approachable.
I'd probably still use the CSS method, I try to avoid JS where I can, if I could and have your method as a backup in case focus-within wasn't supported.
try{document.querySelector(':focus-within');}catch(err){console.log("focus-within is not available, using polyfill");focusWithinFallback(topLevelLinks);}functionfocusWithinFallback(array){array.forEach(link=>{...}}
I'm a self-taught Front End & JS Dev and professional learner with accessibility expertise. I'm passionate about breaking down concepts into relatable concepts, making it more approachable.
I'm a self-taught Front End & JS Dev and professional learner with accessibility expertise. I'm passionate about breaking down concepts into relatable concepts, making it more approachable.
Yeah, I definitely understand the avoiding JS by default mindset. For me, I usually think this way too. My rule of thumb is always to use JS to toggle classes and use CSS to change the styling vs control the styling in JS. Over the years though, I've been less resistant to use JS depending on circumstance so long as I'm writing it in a minimalistic style.
I'll play around more with :focus-within for my follow up post :).
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Ugh yeah, the reason I haven't used this is because most of my clients still support IE and Edge. Me: sobs in a corner.
Thanks for showing me this though. Pretty cool to learn about how people are using pseudo-classes.
I'd probably still use the CSS method, I try to avoid JS where I can, if I could and have your method as a backup in case focus-within wasn't supported.
This would give you support back to IE6 😀
Unparsable CSS is ignored by default.
I'm a front-end dev, I am aware that unparsable CSS is ignored by default ;)
It was more for people that might read later 😜
Yeah, I definitely understand the avoiding JS by default mindset. For me, I usually think this way too. My rule of thumb is always to use JS to toggle classes and use CSS to change the styling vs control the styling in JS. Over the years though, I've been less resistant to use JS depending on circumstance so long as I'm writing it in a minimalistic style.
I'll play around more with
:focus-within
for my follow up post :).