<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jQuery Paginator. Just another jQuery plugin - Basic Paginator</title>
<link href="css/jquery.mmPaginator.css" rel="stylesheet" />
<link href="css/style.css" rel="stylesheet" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js" type="text/javascript"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.16/jquery-ui.min.js" type="text/javascript"></script>
<script type="text/javascript" src="js/jquery.mmPaginator.min.js"></script>
<script>
$(document).ready(function(){
    $("#myPaginator").mmPaginator({
        numRows:200,
        rowsPerPage:20
    });
});
</script>
</head>
<body>
<div id="myPaginator"></div>
</body>
</html>