i checked both firefox and ie, and voting is working fine.
can anyone else vote on the website?
about your sneak spy. do you mean the javascript error you get,
saying something null or object.
here's a fix
open sneak.php
find the function received_data()
and find this bit. about line 114
Code:
for (i=0; i<new_items && i<max_items; i++) {
items[i].innerHTML = to_html(new_data[i]);
set_initial_color(i);
}
update it with this.
Code:
for (i=0; i<new_items && i<max_items; i++) {
if(new_data[i] != undefined){
items[i].innerHTML = to_html(new_data[i]);
set_initial_color(i);
}
}
now it will not create the html is it is not defined. seems to fix that.
try it and post your results