Hi,
I have a little javascript routine that copies the data from a form across DHTML layers into a hidden form. The problem is that in Netscape the it puts '&++' into the URL after I submit it but in IE it omits it. This causes a Bad Args to Implode errror in IE, presumably because it tires to implode an empty array. How do I get IE to add in the '+' to the URL?
Thanks
with(document.outputform.elements['loci_out[]'].name);
ptr=0;
for(i=0;i<length;i++){
if(options.selected){
tmp='loci_out['+ptr+']';
document.hiddenform.elements[tmp].value=options.value;
ptr++
}
}