2/ not just "el.value"
This is an example, so I've written it to show what is happening and how/why, in case of future extension.
This is an example, so I've written it to show what is happening and how/why, in case of future extension.
function addEmail()
{
// += appends some text to something
document.getElementById("textbox").value += this.value;
}
Comment