Here is my JQuery code :
$(document).ready(function() {
$.clock.locale = {"pt":{"weekdays":["Domingo","Segunda-feira", "Terça-feira","Quarta-feira","Quinta-feira","Sexta-feira", "Sábado"],"months":["Janeiro","Fevereiro","Março","Abril", "Maio","Junho","Julho","Agosto","Setembro","October","Novembro", "Dezembro"] } };
$(".clock1").clock({"calendar":"false"});
});
My html code is something like <div class="clock1 ></div>
With this code I am getting the clock like : 02:29:11 AM
.
But I want this clock like 2014-02-07 02:29:11 AM
. How can I get the date time like this way? Any idea?