Created
October 28, 2014 09:08
-
-
Save kamatari/613f903e9265d55f125b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script type="text/javascript"> | |
| $(document).ready(function(){ | |
| var loaded_items = 0; | |
| $(".loadmore_button").click(function(){ | |
| loaded_items = $(".app_list").length; | |
| $.get('/index.php/app/loadmore/'+loaded_items, function(data){ | |
| $('.app_list').append(data); | |
| }); | |
| }) | |
| }) | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment