hugo-theme-introduction/docs/js/initMoment.tmp.js

5 lines
129 B
JavaScript
Raw Normal View History

$(document).ready(function() {
var time = moment().tz("America/Los_Angeles").format("h:mm A");
$("#time").html(time);
})