views:

22

answers:

1

Hi!

How a javascript can get the current locale in ruby on rails application?

+3  A: 

There are few ways how to do it, for example you can set locale variable in your view like this:

<script type="text/javascript"> 
  var locale = '<%= I18n.locale %>';
</script>

Of course, this is a global variable, so you should use a namespace.

Igor Pavelek