| Views | 298 | Reviews | 0 |
| Rating | Favoured |
0
|
|
| License | Others | Language | JavaScript |

This jquery plugin is used to create a pagination element under a table element. You can customize your pagination needs through various settings.
td {
border: 1px solid black;
}
table {
border: thick solid black; width: 100%;
}
#testTable {
width : 350px;
margin-left: auto;
margin-right: auto;
}
#tablePagination {
background-color: #DCDCDC;
font-size: 0.8em;
padding: 0px 5px;
height: 20px
}
#tablePagination_paginater {
margin-left: auto;
margin-right: auto;
}
#tablePagination img {
padding: 0px 2px;
}
#tablePagination_perPage {
float: left;
}
#tablePagination_paginater {
float: right;
}
The following is the JavaScript that was applied to the table.
$('table').tablePagination({});