How to get browser Time Zone and browser date using java concept
hi friend,
There is no HTTP standard that allow the browser to tell the server about the time. So, to get the time zone you may use the following code snippet.
<html> <head> <title> Home </title> <script type="text/javascript"> var userDate = new Date(); var userTimeZone = ( userDate.getTimezoneOffset()/60 )*( -1 ); alert("Timezone = " + userTimeZone ); alert("Date : "+userDate); </script> </head> <body> <h2>Get TimeZone Example</h2> </body> </html>
Thanks.
Ads