Is there a way to expand collapsed text by default?

Talking aobut this:

something

I would like this to show without the user having to click it. Is it possible?

2 Likes

Not that I am aware of, no.

1 Like

The only way I know of would be through JavaScript, you could probably run an event that looks for a details tag and adds the attribute ‘open’ to it.

Something like this:

$('details').attr('open','')

Figuring out the right event to fire that on, is a different question.

6 Likes

Is JS still the “easiest” solution at this point?