Welcome to mirror list, hosted at ThFree Co, Russian Federation.

initMoment.js_2c91ad96a282a351b7d5bc5e7b377547.content « js « js « assets « _gen « resources « exampleSite - github.com/vickylaixy/hugo-theme-introduction.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c37ed82a875c5531fc499bfb30a2f2e3e5250e5d (plain)
1
2
3
4
$(document).ready(function() {
    var time = moment().tz("America/Los_Angeles").format("h:mm A");
    $("#time").html(time);
})