I have the following timezones:
when a user selects a timezone from the list how do i get whats the current time and date at that timezone? for example if i choose "Azores" i want to get the current date time for that area.
In moment i could use IANA timezones and pass the timezone like and format it to ("dddd, D MMM YYYY" )
moment().tz().guess;
but the user doesnt want to use IANA Timezones because they cant find some of the countries so i cant go with that option.
Is there a way i can determine the current datetime based on the timezones specified?
i also tried the following if i passed in the offset but that didnt work example:
moment().utcOffset("-01:00");
because its taking my local time and offsetting it so it doesnt give me the actual current datetime.