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: […]
Browsers Compatibility
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
It seems that the last Internet Explorer 7 release (7.0.5730.13) has introduced a new bug while displaying a fullscreen web page : A white space appears at the bottom ! The problem comes from Windows taskbar, which somehow succeeds to interact with IE layout rendering system. The solution found to […]