I was looking for some kind of code that will do the things that the the image bellow shows. Several options, and when you press one there is different text in each window. i belive this could be javascript but im not 100% sure. I have no idea what this is one is called so i hope someone know where i can find one or someting simillair.
If the id of your textarea element is "textbox", you can do this in your HTML: <input type="radio" value="three" name="group1" onclick="document.getElementById('textbox').value='whatever';"/> Code (markup): The onclick event simply changes the value of the existing textarea.