pimplesushant-pere

Timezone as per browser

Feb 25th, 2019
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function showConvertedDate() {
  2.     $('.admin_date_time').each(function () {
  3.         let $this = $(this), timezone = moment().tz(moment.tz.guess()).format('Z');
  4.         finalDate = moment.utc($this.data('date_time')).utcOffset(timezone).format('DD-MM-YYYY, HH:mm A'+' ('+timezone+')');
  5.         $this.html(finalDate);
  6.     });
  7. }
  8.  
  9. class="text-sm admin_date_time" data-date_time="{{$answer['created_at']}}"
Add Comment
Please, Sign In to add comment