Content Pagination Using PHP and jQuery
Submitted by argie on Thursday, March 14, 2013 - 11:38.
Hi everyone, this tutorial will teach you on how to create an elegant jQuery content pagination in a few line of codes. To start with, let's follow the steps below:
to summarize the code will look like bellow
To put the code into action, click the menu and you will see that the content will change.
Hope this tutorial will help you, the finish file is attach in this tutorial you can download it.
Step 1: Create Our CSS
The function of this part is it arrange our layout. To create our CSS copy the code bellow and save it as "index.php".- <style type="text/css">
- #content div.section { display:none; }
- #content div.one { display:block; }
- body{
- background-color: #F7F7F7;
- color: #747474;
- font-family: Arial,sans-serif;
- font-size: 12px;
- line-height: 20px;
- height: 100%;
- width: 100%;
- margin:0;
- padding:0;
- }
- ul li{
- float:left;
- list-style:none;
- }
- ul li a{
- Padding:5px;
- }
- .clearfix{
- clear:both;
- }
- .section{
- padding-left: 43px; padding-top: 25px;
- }
- </style>
Step 2: Write Our jQuery Script
Copy the code below and paste it below the CSS file in "index.php".- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('#side_nav ul li a').click(function() {
- $('#side_nav ul li.current').removeClass('current');
- $(this).parent().addClass('current');
- var filterVal = $(this).attr('class');
- if($(this).hasClass(filterVal)) {
- $(this).slideDown("slow");
- } else {
- $(this).hide("slow");
- }
- });
- return false;
- });
- });
- </script>
Step 3: Creating our page that display our content
Copy the code below and paste it below the jQuery file in "index.php".- <div id=side_nav>
- <ul>
- <li class=current><a href="#" class=one>HOME</a></li>
- <li><a href="#" class=two>ABOUT US</a></li>
- <li><a href="#" class=three>CONTACT US</a></li>
- <li><a href="#" class=four>TOPIC THREE</a></li>
- </ul>
- <div class="clearfix"></div>
- </div>
- <div id=content>
- <div class="section one">
- This tab is for section one content
- </div>
- <div class="section two">
- This tab is for section two content
- </div>
- <div class="section three">
- This tab is for section three content
- </div>
- <div class="section four">
- This tab is for section four content
- </div>
- </div>
- <style type="text/css">
- #content div.section { display:none; }
- #content div.one { display:block; }
- body{
- background-color: #F7F7F7;
- color: #747474;
- font-family: Arial,sans-serif;
- font-size: 12px;
- line-height: 20px;
- height: 100%;
- width: 100%;
- margin:0;
- padding:0;
- }
- ul li{
- float:left;
- list-style:none;
- }
- ul li a{
- Padding:5px;
- }
- .clearfix{
- clear:both;
- }
- .section{
- padding-left: 43px; padding-top: 25px;
- }
- </style>
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('#side_nav ul li a').click(function() {
- $('#side_nav ul li.current').removeClass('current');
- $(this).parent().addClass('current');
- var filterVal = $(this).attr('class');
- if($(this).hasClass(filterVal)) {
- $(this).slideDown("slow");
- } else {
- $(this).hide("slow");
- }
- });
- return false;
- });
- });
- </script>
- <div id=side_nav>
- <ul>
- <li class=current><a href="#" class=one>HOME</a></li>
- <li><a href="#" class=two>ABOUT US</a></li>
- <li><a href="#" class=three>CONTACT US</a></li>
- <li><a href="#" class=four>TOPIC THREE</a></li>
- </ul>
- <div class="clearfix"></div>
- </div>
- <div id=content>
- <div class="section one">
- This tab is for section one content
- </div>
- <div class="section two">
- This tab is for section two content
- </div>
- <div class="section three">
- This tab is for section three content
- </div>
- <div class="section four">
- This tab is for section four content
- </div>
- </div>
Add new comment
- 86 views