Browsers Compatibility


A little javascript class to handle geolocation in a web browser https://github.com/FabFab/GPS-in-your-browser How it works : GPS.get(); [...] var latitude = GPS.position.latitude; var longitude = GPS.position.longitude; or with a callback: GPS.get(updatePosition); function updatePosition() { var latitude = GPS.position.latitude; var longitude = GPS.position.longitude; [...] } More about Geolocation in web browsers: […]

GPS Geolocation in web browser class in Javascript


Yes, it exists. Its name is Firebug lite : http://www.makeuseof.com/tag/install-firebug-for-browsers-other-than-firefox/ ô Joie. It’s implemented in Javascript so it works with every browser, and it’s easily book-markable. If you need other Internet Explorer tools for web development : * myDebugBar and Companion.js are a buggy version of Firebug  http://www.my-debugbar.com/wiki/CompanionJS/HomePage * IEtester […]

Firebug for IE and others