I have a group of radio buttons typically like:
<input type="radio" name="pauseRadio" id="pause"/>
I need to mark some of them "checked":
<input type="radio" name="pauseRadio" id="pause" checked/>
set-attr isn't appropriate, and I can't seem to get syntax right to use "after" or "before" - I'm sure there's a very obvious way to do this that I'm not seeing.
Thanks for any help.
David