Hi!
How could I make that pressing a button changes the value of an input text?
Can I do the button changes only the focused input text?
Thanks.
<form name='myform'> <input type='text' name='mytext' value='abc'> <input type="button" name="mybutton" value="Click Me" onclick="javascipt:document.myform.mytext.value='xyz';"> </form>