I am using Jquery datetime picker for calendar display
var today = new Date();
jQuery('.strathidden , .endhidden').datetimepicker({
minDate:today
});
I want to add timezone to this component so that the calendar should come with respect to the timezone.
Say for example
if in India the date is 29/02/2016 14:37:20 PM so when calendar is open it should point to the current and time of India but if my timezone is in different zone for example GMT-7 so its current date is 29/02/2016 14:10:20 AM so the calendar points to the current date of GMT-7 timezone.