Office Address

41/D, West Brahmondi, Narsingdi

Phone Number

+880-1975374887

Email Address

dynamicweblab@gmail.com

Geolocation is the art of figuring out where you are in the world and (optionally) sharing that information with people you trust.
To check if the user browser support Geolocation you can use any of the following techniques:

Technique #1:

By using a JavaScript junction.
[code lang=”js”] function supports_geolocation() {
return !!navigator.geolocation;
}
[/code] Technique #2:

you can use Modernizr to detect support for the geolocation API.

[code lang=”js”] if (Modernizr.geolocation) {
// let’s find out where you are!
} else {
// no native geolocation support available
// maybe try Gears or another third-party solution
}
[/code] Get this tips from http://fortuito.us/diveintohtml5/detect.html#geolocation

Maidul Islam

I am a freelance web developer.Like to share what i learn.