In this tutorial you will know how to add local time or some other time zone rime, you need to include the javascript file along with jquery which is the only dependency.
<script src="http://plugins.jquery.com/files/jquery.jclock-1.2.0.js.txt" type="text/javascript"></script>
You can add this code to show the clock on your website:
<script type="text/javascript">
$(function($) {
$(.jclock).jclock();
});
</script>
<div class="jclock"></div>

You can add some styling by using this code:
<script type="text/javascript">
$(function($) {
var options = {
timeNotation: 12h,
am_pm: true,
fontFamily: Verdana, Times New Roman,
fontSize: 20px,
foreground: yellow,
background: ared
};
$(.jclock).jclock(options);
});
</script>
<div class="jclock"></div
![]()
You can add India time (using UTC offset):
<script type="text/javascript">
$(function($) {
var options={
utc: true,
utc_offset: 5.5
};
$(.jclock).jclock(options);
});
</script>
<div class="jclock"></div>
India Time:15:45:19
Related Stuff
-
MooV: Using cutting edge Video phones and Software Video Phones - coupling all that with VoIP and empowering the disabled.
-
Moo Telecom: VoIP communications made easy - Ring anyway with the fun and ease of using a normal phone
-
TagR:Mobile Social Network with Real Time Locations Based services, and Ambience Intelligence, VoiP, IM, Skype, Googletalk, Mapping, Flickr, Events, Calendaring, Scheduling, SecondLife Support
-
ClearSMS : ClearSMS is a Web-based application that lets you send bulk SMS messages to your customers, contacts, or just about anyone.
-
Jajah:jah is a VoIP (Voice over IP) provider, founded by Austrians Roman Scharf and Daniel Mattes in 2005[1]. The Jajah headquarters are located in Mountain View, CA, USA, and Luxembourg. Jajah maintains a development centre in Israel.
-
Skype: It’s free to download and free to call other people on Skype. Skype the number one voice over ip software
- PrivatePhone: a free local phone number with voicemail and messages you can check online or from any phone.

Original Source: