MonoList - Plugin for creating navigation by list and by pretty much everything else.

Multilingual

By default, words starting not with the English characters or the Arabic numerals, will be grouped under the % button. It is possible to enable support for other languages. This feature is based on the assignment of the regular expression's letters interval. So you need to understand that multilingual feature is limited to Javascript RegExp possibilities. For example, if you want to add support for the Russian language, you must initialize the plugin with the next option:

$('#target').monolist({
	addLettersRange: 'а-яё' // like RegExp('[а-яё]')
});

You also have the opportunity to set any text on the button that shows all items.

$('#target').monolist({
	allLettersText: 'All with Russian'
});

Or even get rid of this button.

$('#target').monolist({
	allLettersText: ''
});