Hello everyone,
My question is simple: How do I find the first element of the template I’m currently in?
I would appreciate any answers or research suggestions.
Thanks
YC
You’re usually in control of the HTML of a template so you could just give it a id/class.
CSS selectors like div:first-child
or div:first-of-type
will also work.
I suspect I’m not understanding the question, though.