How a javascript can get the current locale in ruby on rail开发者_JS百科s application?
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.
精彩评论