Hi,
I Have the below declaration of an array
var latitude = []; which is working in IE but the same is not working in Mozilla.
i changed it to var latitude = new Array() ;
var latitude = new Array(10).But none is working .
Weird thing is it is hitting the server many times sort of infinite loop.If i remove the above declaration the page is at least displayed.
I Have the below declaration of an array
var latitude = []; which is working in IE but the same is not working in Mozilla.
i changed it to var latitude = new Array() ;
var latitude = new Array(10).But none is working .
Weird thing is it is hitting the server many times sort of infinite loop.If i remove the above declaration the page is at least displayed.
Comment