In javascript I use the following line:
code:
taginp.setAttribute('name','bestanden'+count_files+'');
In Firefox this works, but in IE it gives an error...
I narrowed it down to the part
code:
'bestanden'+count_files+''
apparently it doesn't see that part as a string and therefore gives an error.
Anyone know how I can fix that?