mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-13 00:39:45 +00:00
5 lines
129 B
JavaScript
5 lines
129 B
JavaScript
|
$(document).ready(function() {
|
||
|
var time = moment().tz("America/Los_Angeles").format("h:mm A");
|
||
|
$("#time").html(time);
|
||
|
})
|