Heres the code for the particular part
if (form.description.value != "") {
form.Meta.value += "\""+
form.description.value + "\</a>\n";
}
<td> <input type="text" name="description" size="25"></td>
And i get this
"brian</a>
I try to remove the quotation and i get error messages all the time.
Any ideas?
The problem seems to be
form.description.value + "\</a>\n"; <--- the quotation after the plus. IF i remove it dosent work.
if (form.description.value != "") {
form.Meta.value += "\""+
form.description.value + "\</a>\n";
}
<td> <input type="text" name="description" size="25"></td>
And i get this
"brian</a>
I try to remove the quotation and i get error messages all the time.
Any ideas?
The problem seems to be
form.description.value + "\</a>\n"; <--- the quotation after the plus. IF i remove it dosent work.
















