View Single Post
  #8 (permalink)  
Old 09-06-2006, 11:28 AM
savant's Avatar
savant savant is offline
Constant Pligger
 
Join Date: Apr 2006
Location: UK
Posts: 1,218
Thanks: 64
Thanked 207 Times in 148 Posts
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
Reply With Quote