I'm trying to match the selected value of a "select" element. This throws the error above so I guess "checked" is not supported?
css.Compile(`select[name="language"] > option:checked`)
I've found that I can get what I was looking for using select[name="language"] > option[selected] so I'm closing this. Feel free to reopen if my issue was actually valid.
I'm trying to match the selected value of a "select" element. This throws the error above so I guess "checked" is not supported?
css.Compile(`select[name="language"] > option:checked`)