girlinterrupted24
Programmer
Hey guys...
I am getting this error
Un nombre contenía un carácter no válido. Error al procesar
Which I think means something like "The name contained a non-valid character"
for (var loop=0; loop<arguments.length; loop++) {
---------------------------------------^
What could cause this error -- helpppp
The whole code is :
function Refresher(pic1,pic2,pic3,pic4,pic5,pic6,pic7,pic8,pic9,pic10,pic11,pic12,pic13,pic14,pic15,pic16,pic17,pic18,pic19,pic20) {
for (var loop=0; loop<arguments.length; loop++) {
if (arguments[loop] != '') {
// document.images['pic' + (loop+1)].src = '../images/property' + arguments[loop] + '?randomParam=' + new Date().getTime();
document.images['pic' + (loop+1)].src = '../images/property' + arguments[loop] + '?' + new Date().getTime();
}
}
}
Your help would be so much appreciated... this error only happens very rarely tooo...... So I dont know what throws it!!
I am getting this error
Un nombre contenía un carácter no válido. Error al procesar
Which I think means something like "The name contained a non-valid character"
for (var loop=0; loop<arguments.length; loop++) {
---------------------------------------^
What could cause this error -- helpppp
The whole code is :
function Refresher(pic1,pic2,pic3,pic4,pic5,pic6,pic7,pic8,pic9,pic10,pic11,pic12,pic13,pic14,pic15,pic16,pic17,pic18,pic19,pic20) {
for (var loop=0; loop<arguments.length; loop++) {
if (arguments[loop] != '') {
// document.images['pic' + (loop+1)].src = '../images/property' + arguments[loop] + '?randomParam=' + new Date().getTime();
document.images['pic' + (loop+1)].src = '../images/property' + arguments[loop] + '?' + new Date().getTime();
}
}
}
Your help would be so much appreciated... this error only happens very rarely tooo...... So I dont know what throws it!!