Last week, we had the author of TDD for a Shopping Website LiveProject. Friday at 11am Ranch time, Steven Solomon will be hosting a live TDD session just for us. See for the agenda and registration link
anyone know how to set a radio button checked with javascript? I'm confused because they have the same name... <input type=radio name='exampleRadio' value='1'> <input type=radio name='exampleRadio' value='2'> so if I want to set the value 2 radio button to checked based on some other user action how do I do it? this.formName.exampleRadio.checked... thnx. Joe