Hi,I'm using jquery clock to demonstrate time in my application.
In this application,there are two different browser windows where one of these triggers the other as its pop up window.
In these two windows,I'm using jclock instances,but somehow these clocks don't both tick as one.
http://plugins.jquery.com/files/jquery.jclock-1.2.0.js.txt
$(document).ready(function () {
$('#clock').jclock({ format: '%d %B %A %Y %H:%M:%S' });
});
<div id="clock"></div>
Why are these clock not simultaneous ?
How can I achieve that ?
Thank you