├── loading.gif
├── README.md
├── tabs.php
├── index.php
└── jquery-1.2.3.pack.js
/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/chapagain/jquery-ajax-tabs/master/loading.gif
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Simple Ajax Tabs using jQuery and PHP
2 |
3 | View Demo: [Demo](http://blog.chapagain.com.np/examples/jquery-ajax-tabs/)
4 |
5 | Blog Article: [Simple and easy jQuery tabs with AJAX and PHP](http://blog.chapagain.com.np/simple-and-easy-jquery-tabs-with-ajax-and-php/)
6 |
--------------------------------------------------------------------------------
/tabs.php:
--------------------------------------------------------------------------------
1 | GoogleContent goes here !
';
7 | break;
8 |
9 | case "2":
10 | echo 'Yahoo content ?
';
11 | break;
12 |
13 | case "3":
14 | echo 'My hotmail content goes here...
';
15 | break;
16 |
17 | case "4": default:
18 | echo 'Twitter status update :)
';
19 | break;
20 | }
21 | ?>
--------------------------------------------------------------------------------
/index.php:
--------------------------------------------------------------------------------
1 |
2 |
Loading...
128 |