I found code that was appending. I didn't write the original code and don't know why the original author chose to append the code. Once I corrected that, I was fine.
Original Code:
if (document.findform.pagesr.value!="Section"){
if (document.findform.cites.value!="")
{
document.findform.cites.value="+"
}
Corrected code:
if (document.findform.pagesr.value!="Section"){
//if (document.findform.cites.value!="")
{
document.findform.cites.value="" //+
}
|