{"id":1218,"date":"2022-08-16T09:31:03","date_gmt":"2022-08-16T09:31:03","guid":{"rendered":"https:\/\/mklasen.com\/?p=1218"},"modified":"2022-08-16T09:34:56","modified_gmt":"2022-08-16T09:34:56","slug":"detecting-the-users-global-location-using-javascript","status":"publish","type":"post","link":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/","title":{"rendered":"Detecting the user’s global location using javascript"},"content":{"rendered":"\n

A while back I wanted to show\/hide a box on my website based on the location of the visitor. There’s a couple of options to get the user location:<\/p>\n\n\n\n

  1. Use an API which you send the IP address to and get a location back (find services by googling “geolocation ip address api”)<\/li>
  2. Ask for the user location via the browser’s geolocation API (example here<\/a>)<\/li>
  3. A global approach: get the user’s timezone (see below!)<\/li><\/ol>\n\n\n\n

    The first one is quite privacy-sensitive, it usually requires sending the user IP to a third-party or keeping a database of IP’s and locations yourself.<\/p>\n\n\n\n

    The second one gives the user a pop-up; “Hey, could you give me your location so I can decide if I show you this box or not?”<\/em> That’s a no-go as well.<\/p>\n\n\n\n

    The third option: Requesting the user’s timezone<\/h2>\n\n\n\n

    Now, this one is interesting – it might not always give me the precise location, but I am OK with that. When I edit the timezone in my system preferences, the browser reports the change back immediately, and most users have the auto-detection of timezone enabled.<\/p>\n\n\n\n

    How does that work?<\/strong><\/p>\n\n\n\n

    We’ll use the Intl.DateTimeFormat().resolvedOptions().timeZone<\/code> function to get the timezone. And, since I want to show\/hide the box based on “In Europe” or “outside of Europe”, this is the code I came up with:<\/p>\n\n\n\n

    document.addEventListener(\"DOMContentLoaded\", () => {\n\tlet elem = document.querySelector(\".the-box-class\");\n\n\tif (elem !== null) {\n\t\tconst tz = Intl.DateTimeFormat().resolvedOptions().timeZone;\n\t\tif (tz.includes('Europe')) {\n\t\t\telem.style.opacity = 0;\n\t\t}\n\t}\n});<\/code><\/pre>\n\n\n\n

    Easy does it!<\/p>\n\n\n\n

    Happy developing!<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"

    A while back I wanted to show\/hide a box on my website based on the location of the visitor. There’s a couple of options to get the user location: Use an API which you send the IP address to and get a location back (find services by googling “geolocation ip address api”) Ask for the […]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[1],"tags":[],"acf":[],"yoast_head":"\nDetecting the user's global location using javascript - Marinus Klasen<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Detecting the user's global location using javascript - Marinus Klasen\" \/>\n<meta property=\"og:description\" content=\"A while back I wanted to show\/hide a box on my website based on the location of the visitor. There’s a couple of options to get the user location: Use an API which you send the IP address to and get a location back (find services by googling “geolocation ip address api”) Ask for the […]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"Marinus Klasen\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/marinus.klasen\" \/>\n<meta property=\"article:author\" content=\"http:\/\/facebook.com\/marinus.klasen\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-16T09:31:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-16T09:34:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mklasen.com\/content\/uploads\/2020\/03\/cropped-cropped-mklasen-logo-margin-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Marinus Klasen\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@http:\/\/twitter.com\/marinusklasen\" \/>\n<meta name=\"twitter:site\" content=\"@marinusklasen\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Marinus Klasen\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\"},\"author\":{\"name\":\"Marinus Klasen\",\"@id\":\"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29\"},\"headline\":\"Detecting the user’s global location using javascript\",\"datePublished\":\"2022-08-16T09:31:03+00:00\",\"dateModified\":\"2022-08-16T09:34:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\"},\"wordCount\":241,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29\"},\"articleSection\":[\"General\"],\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\",\"url\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\",\"name\":\"Detecting the user's global location using javascript - Marinus Klasen\",\"isPartOf\":{\"@id\":\"https:\/\/mklasen.com\/#website\"},\"datePublished\":\"2022-08-16T09:31:03+00:00\",\"dateModified\":\"2022-08-16T09:34:56+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/mklasen.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"General\",\"item\":\"https:\/\/mklasen.com\/general\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Detecting the user’s global location using javascript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/mklasen.com\/#website\",\"url\":\"https:\/\/mklasen.com\/\",\"name\":\"Marinus Klasen\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/mklasen.com\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"nl-NL\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29\",\"name\":\"Marinus Klasen\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\/\/mklasen.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/mklasen.com\/content\/uploads\/2021\/01\/DONE1171.jpg\",\"contentUrl\":\"https:\/\/mklasen.com\/content\/uploads\/2021\/01\/DONE1171.jpg\",\"width\":1500,\"height\":1000,\"caption\":\"Marinus Klasen\"},\"logo\":{\"@id\":\"https:\/\/mklasen.com\/#\/schema\/person\/image\/\"},\"description\":\"Marinus has been working in software\/web development for more than a decade. Since 2020 his attention shifted on sharing knowledge and developing products and tools for sharing knowledge. Marinus Klasen on Twitter\",\"sameAs\":[\"http:\/\/facebook.com\/marinus.klasen\",\"https:\/\/nl.linkedin.com\/in\/marinusklasen\",\"https:\/\/twitter.com\/http:\/\/twitter.com\/marinusklasen\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Detecting the user's global location using javascript - Marinus Klasen","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/","og_locale":"nl_NL","og_type":"article","og_title":"Detecting the user's global location using javascript - Marinus Klasen","og_description":"A while back I wanted to show\/hide a box on my website based on the location of the visitor. There’s a couple of options to get the user location: Use an API which you send the IP address to and get a location back (find services by googling “geolocation ip address api”) Ask for the […]","og_url":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/","og_site_name":"Marinus Klasen","article_publisher":"http:\/\/facebook.com\/marinus.klasen","article_author":"http:\/\/facebook.com\/marinus.klasen","article_published_time":"2022-08-16T09:31:03+00:00","article_modified_time":"2022-08-16T09:34:56+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/mklasen.com\/content\/uploads\/2020\/03\/cropped-cropped-mklasen-logo-margin-1.png","type":"image\/png"}],"author":"Marinus Klasen","twitter_card":"summary_large_image","twitter_creator":"@http:\/\/twitter.com\/marinusklasen","twitter_site":"@marinusklasen","twitter_misc":{"Written by":"Marinus Klasen","Est. reading time":"2 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#article","isPartOf":{"@id":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/"},"author":{"name":"Marinus Klasen","@id":"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29"},"headline":"Detecting the user’s global location using javascript","datePublished":"2022-08-16T09:31:03+00:00","dateModified":"2022-08-16T09:34:56+00:00","mainEntityOfPage":{"@id":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/"},"wordCount":241,"commentCount":0,"publisher":{"@id":"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29"},"articleSection":["General"],"inLanguage":"nl-NL","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/","url":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/","name":"Detecting the user's global location using javascript - Marinus Klasen","isPartOf":{"@id":"https:\/\/mklasen.com\/#website"},"datePublished":"2022-08-16T09:31:03+00:00","dateModified":"2022-08-16T09:34:56+00:00","breadcrumb":{"@id":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/mklasen.com\/detecting-the-users-global-location-using-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mklasen.com\/"},{"@type":"ListItem","position":2,"name":"General","item":"https:\/\/mklasen.com\/general\/"},{"@type":"ListItem","position":3,"name":"Detecting the user’s global location using javascript"}]},{"@type":"WebSite","@id":"https:\/\/mklasen.com\/#website","url":"https:\/\/mklasen.com\/","name":"Marinus Klasen","description":"","publisher":{"@id":"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mklasen.com\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"nl-NL"},{"@type":["Person","Organization"],"@id":"https:\/\/mklasen.com\/#\/schema\/person\/bbad02776afb72dfba2ebfe1956a4e29","name":"Marinus Klasen","image":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/mklasen.com\/#\/schema\/person\/image\/","url":"https:\/\/mklasen.com\/content\/uploads\/2021\/01\/DONE1171.jpg","contentUrl":"https:\/\/mklasen.com\/content\/uploads\/2021\/01\/DONE1171.jpg","width":1500,"height":1000,"caption":"Marinus Klasen"},"logo":{"@id":"https:\/\/mklasen.com\/#\/schema\/person\/image\/"},"description":"Marinus has been working in software\/web development for more than a decade. Since 2020 his attention shifted on sharing knowledge and developing products and tools for sharing knowledge. Marinus Klasen on Twitter","sameAs":["http:\/\/facebook.com\/marinus.klasen","https:\/\/nl.linkedin.com\/in\/marinusklasen","https:\/\/twitter.com\/http:\/\/twitter.com\/marinusklasen"]}]}},"jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","featured_image_src":null,"featured_image_src_square":null,"author_info":{"display_name":"Marinus Klasen","author_link":"https:\/\/mklasen.com\/author\/mklasen\/"},"_links":{"self":[{"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/posts\/1218"}],"collection":[{"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/comments?post=1218"}],"version-history":[{"count":2,"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/posts\/1218\/revisions"}],"predecessor-version":[{"id":1221,"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/posts\/1218\/revisions\/1221"}],"wp:attachment":[{"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/media?parent=1218"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/categories?post=1218"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mklasen.com\/wp-json\/wp\/v2\/tags?post=1218"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}