I installed both components of the store locator and loaded about 20 records. Some via csv file and some manual. I get the following message above each of the records. Can you tell what's wrong?
, {x: 400, y: 46}); } else if ( $('lat').value == '' || isNaN($('lat').value) || $('lat').value 90) { SqueezeBox.applyContent('
Latitude and longitude values must correspond to a valid location on the face of the earth.
Latitude values can take any value between -90 and 90
', {x: 550, y: 80}); } else if ( $('lng').value == '' || isNaN($('lng').value) || $('lng').value 180) { SqueezeBox.applyContent('
Latitude and longitude values must correspond to a valid location on the face of the earth.
Longitude values can take any value between -180 and 180
', {x: 550, y: 80}); } else { document.getElementById('lat').disabled = false; document.getElementById('lng').disabled = false; submitform( pressbutton ); } } -->
thanks