1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 18:32:50 +00:00
Files
mywebsite/public/javascripts/custom.js
2015-06-25 23:03:43 -05:00

16 lines
288 B
JavaScript

$(document).ready(function(){
var date = new Date();
var offset = new Date().getTimezoneOffset();
$("#timeZone").val(offset);
console.log("offset - " + offset);
$(function() {
$( "#datepicker" ).datepicker();
});
$(function() {
$("#timepicker").timepicker();
});
});