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

Pagination

If the list is still too long for the comfort use, you can add pagination. You should decide how many items per page are optimal count for you and pass it to the itemsPerPage option. For example, if you want ten items per page you should initialize plugin with the next option:

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

By default, pagination will be placed in a div after the list. You can place it wherever you want by creating your own container for pagination and passing it to the paginationContainer option. You can even create two containers, before & after the list, for example, for even better usability of long lists.

$('#target').monolist({
	buttonsContainer: '#buttons-container',
	itemsPerPage: 30,
	paginationContainer: '.pagination-container'
});