Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6657883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T01:49:32+00:00 2026-05-26T01:49:32+00:00

Trying to implement a simple load more functionality with jquery. The idea is to

  • 0

Trying to implement a simple “load more” functionality with jquery. The idea is to use it in the same way as one does pages. Click and a certain number of posts loaded from the database show up.

I have the following javascript:

$(function(){
  var count = 0;
  var num = 20;
  $("#contents").load("posts.php");
  $("#more").click(
 function(){
 var count = 0;
var num = 20;
$("#contents").load("posts.php");
$("#more").click(
        function(){
                $(".loading").show("fast");
                        count += num;
                        $.post("posts.php", {'page': count}, function(data){

                                        $("#contents").append(data);
                                        $(".loading").hide("slow");
                                });

                }

);

and the following file posts.php

<?
echo "hello";
?>

And I have another file page.php with

 <div id="contents"></div>
<div class="loading"><span style="text-decoration: blink;">LOADING...!</span></div>
<button id="more">More..</button>

When i click the “More Button” though nothing happens even though I’m just trying to print out a simple hello world here. I have loaded the javascript in the head of the file like

<script type ="text/javascript" src ="javascript/load.js"></script>

Other javascript functionality I’ve implemented is working fine. Is there something to add to the “loading” or “contents” elements in page.php?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T01:49:33+00:00Added an answer on May 26, 2026 at 1:49 am

    Your javascript lacks basic syntactic structure, and must be issuing a syntax error, unless you messed it up while posting here. Try this:

    $(function(){
        var count = 0;
        $("#more").click(loadPosts);
        loadPosts();
    
        function loadPosts() {
            var num = 20;
            $(".loading").show("fast");
            count += num;
            $.post("posts.php", {'page': count}, function(data){
                $("#contents").append(data);
                $(".loading").hide("slow");
            });
        }
    });
    

    UPDATE

    Edited the code above and removed $("#contents").load("posts.php");. It was not necessary, and redundant.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to implement a simple zoom to point functionality in WinForms. When the
I'm trying to implement a simple horizontal navigation menu that just shows a single
I am trying to implement a simple request to Wikipedia's API using AJAX (XMLHttpRequest).
I am trying to implement a simple authorization strategy for my Wicket application. I
I am now trying to implement a simple HTML webpage scraper using Java.Now I
I've been trying to implement a simple component-based game object architecture using Objective-C, much
I'm new to Flex SDK and trying to implement a simple project using Doug
My first try of MVC. Am trying to implement a simple example. Inspiration from
I'm still learning about Objective-C memory management. I'm trying to implement several simple classes
We're trying to determine how to implement a simple plugin framework for a service

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.