Get time zone : Date « Dojo toolkit « JavaScript DHTML

Home
JavaScript DHTML
1.Ajax Layer
2.Data Type
3.Date Time
4.Development
5.Document
6.Dojo toolkit
7.Event
8.Event onMethod
9.Ext JS
10.Form Control
11.GUI Components
12.HTML
13.Javascript Collections
14.Javascript Objects
15.Javascript Properties
16.jQuery
17.Language Basics
18.Mochkit
19.Mootools
20.Node Operation
21.Object Oriented
22.Page Components
23.Rico
24.Scriptaculous
25.Security
26.SmartClient
27.Style Layout
28.Table
29.Utilities
30.Window Browser
31.YUI Library
JavaScript DHTML » Dojo toolkit » Date 
Get time zone
 
<html>
  <head>
    <script type="text/javascript">
      var djConfig = {
        baseScriptUri : "js/dojo/"
      };
    </script>
    <script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
  </head>
  <body>
    <script language="JavaScript" type="text/javascript">
      dojo.require("dojo.date");
      var d = new Date();
      alert(dojo.date.getTimezoneName(d));

    </script>
  </body>
</html>

   
  
Dojo-toolkit.zip( 3,849 k)
Related examples in the same category
1.Create dojo.Date
2.Create dojo date object
3.Get date difference
4.Get day in a month
5.Parse ISO Date format string
6.Is leap year
7.Convert date to ISO format string
8.Compare two dates
9.Add month to date
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.