mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
12 lines
270 B
HTML
12 lines
270 B
HTML
<html>
|
|
<body>
|
|
<script>
|
|
navigator.geolocation.getCurrentPosition(function(pos) {
|
|
var evt = document.createEvent('CustomEvent');
|
|
evt.initCustomEvent('georesult', true, false, pos.coords.latitude);
|
|
document.dispatchEvent(evt);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|