I am using this JS to insert a value into a form text box, it works great but when someone clicks another link, it changes the form text box to the newly clicked value. I would like it to append to the existing value.
Eg; it inserts "one" and when i click on two, it changes "one" to "two", i would like it to show "one two"
<script language='javascript' type="text/javascript">
<!-- Hide script from older browsers
function cc(val) {
document.form1.cc.value = val
}
// End hiding script from older browsers -->
</script>