Get Timezone By JS

by Dhruvang Gajjar

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jstimezonedetect/1.0.4/jstz.min.js"></script>

JavaScript

$(document).ready(function() {
  var tz = jstz.determine(); // Determines the time zone of the browser client
  var timezone = tz.name(); //'Asia/Kolhata' for Indian Time.
  alert(timezone);
});