Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iwatakeshi/gengojs-cookie-locale

A front end cookie locale setter for those who use gengojs
https://github.com/iwatakeshi/gengojs-cookie-locale

Last synced: 6 days ago
JSON representation

A front end cookie locale setter for those who use gengojs

Awesome Lists containing this project

README

        

gengojs-cookie-locale
=====================

A front end cookie locale setter for those who use gengojs

This library requires:

* JQuery
* jquery-cookie

###Usage

```html

$(document).ready(function () {
var gengo = gcl();
$('.en-us, .ja').click(function () {
gengo.setLocale(this);
})
});

```

###API

|Method |Description |Return |
|---------|--------------|---------|
|setLocale|Sets the cookie by either the class name from jquery's `this` object or the locale's string| |

###Option

|Option |Description|
|---------|-----------|
|cookieName| Sets the name of the cookie

Example:

```js
var gengo = new gcl({cookiName:'ihearti18n'});
```