jQuery Pager API Settings

A pager component is initialized with the shieldPager constructor, passing it a dictionary of settings as shown below:

    <div id="pager"></div>
    <script type="text/javascript">
    $(function () {
        $("#pager").shieldPager({
            totalItems: 99,
            messages: {
                previousText: "prev",
                nextText: "next",
                firstText: "first",
                lastText: "last"
            }
             events: {
				change: function (e) {
					alert(e.currentPage);
				}
			}
        });
    });
    </script>

More configuration settings you can find bellow.