timezonelist-js

0.1.3 • Public • Published

Timezone List

=== List of time zones you can use for your dropdown forms.

alt text

Installation

$ npm install timezonelist-js

Usage

var tzlist = // require('timezonelist-js') assuming tzlist in used on the backend and passed as javascript object to front-end
var select = document.getElementById("timezone") //get your <select></select> element
 
for (var i = 0; i < tzlist.length; i++) {
    var timezone = tzlist[i]
    select.options[i] = new Option(timezone.text, timezone.value)
}

Custom text

 
var text = timezone.place + ' (UTC' + timezone.time + ')'
select.options[i] = new Option(text, timezone.value)

Output


{ id: 'Pacific/Midway', value: '(UTC-11:00) Midway Island', place: 'Midway Island', time: '-11:00' }

Readme

Keywords

Package Sidebar

Install

npm i timezonelist-js

Weekly Downloads

87

Version

0.1.3

License

ISC

Last publish

Collaborators

  • odegraciajr