384fd0e35e87e22a3b6dc6b62eea0f22f2542e9b
[platform/framework/web/web-ui-fw.git] / demos / tizen-winsets / tips / localeinfo.js
1 $("#localepage").ready(function() {
2         // add current datetime with browser language format
3         // NOTE: Globalize.* functions must be run after docoument ready.
4         $('#current_language').html( Globalize.culture().name );
5         $('#current_date').html( Globalize.format( new Date(), "F" ) );
6         $('#html_font_size').html( 'html font size:' + $('html').css('font-size') );
7 });