How do I get timezones list using moment.js library?
First include moment-timezone
with data and then you can use moment.tz.names();
var timeZones = moment.tz.names();
See http://momentjs.com/timezone/docs/#/data-loading/getting-zone-names/
First include moment-timezone
with data and then you can use moment.tz.names();
var timeZones = moment.tz.names();
See http://momentjs.com/timezone/docs/#/data-loading/getting-zone-names/