if ((get.latitude).match(/((\d+)+(\.\d+))$/))
Analytics_Latitude = get.latitude;
else
Analytics_Latitude = 'undefined';
if ((get.longitude).match(/((\d+)+(\.\d+))$/))
Analytics_Longitude = get.longitude;
else
Analytics_Longitude = 'undefined';
I am getting latitude and longitude value from http://www.telize.com/geoip in my js file now I want to validate that value using javascript... Here I am getting this error like Uncaught TypeError: undefined is not a function