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: f5c373317e9961fa9bc8c28e14a4b25bd2988af2 (plain)
1
2
3
4
$(document).ready(function() {
    var time = moment().tz("America/Los_Angeles").format("h:mm A");
    $('#time').html(time);
})