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

  • Home
  • SEARCH
  • 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 8077221
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T15:25:45+00:00 2026-06-05T15:25:45+00:00

I am trying to create a dynamic ‘page’ listing for threads/comments using AJAX. in

  • 0

I am trying to create a dynamic ‘page’ listing for threads/comments using AJAX.

in PHP, I look over results and limit the database query to ‘$page, $page+10’

Now, all I need to do is figure out how to send what page the user wants to view to the PHP.

here is the code that generates the different page buttons:

var htmlpage = "<div class='pages'><ul>"
for (i=1 ; i < pages+1 ; i++)
{
    htmlpage += "<li><input type='submit' id='page"+i+"' value='"+i+"' onclick='updatefilters(document.getElementById('page1').value);' /></li>"
}
htmlpage += "<div>"    
htmlpage += "</ul>";

*this is being done through javascript with data returned through JSON/AJAX call.

document.getElementById('page1').value is giving me a

syntax error[Break On This Error] updatefilters(document.getElementById(

error. I’ve tried different formatting, and just ended on this. I just don’t know javascript well enough to figure out the problem.

I need to send the value of the submit button to the updatefilters() function. Any suggestions on how to do it?

Thanks

  • 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-06-05T15:25:46+00:00Added an answer on June 5, 2026 at 3:25 pm

    jQuery answer: since you asked/.

    $(document).ready(function() {
        $(document).on('click', '.submitPage', function() {
            updatefilters($(this).val());
        });
    });
    

    slight change to your generation code (was mis-matching the div and ul end BTW) I added the submitPage class. IF you don’t like that use the following selector above instead:

    $(document).on('click','.pages>ul>li>input',function(){
    

    NOW the change in generation code:

    var htmlpage = "<div class='pages'><ul>";
    var mystart = "<li><input type='submit' class='submitPage' id='page";
    var mymid = "' value='";
    var myend = "' /></li>";
    
    for (i = 1; i < pages + 1; i++) {
        htmlpage += mystart + i + mymid + i + myend;
    }
    htmlpage += "</ul></div>"
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create dynamic excel sheet, with the help of php using
I am trying to create a dynamic UI using UpdatePanel of AJAX toolkit. Let
I am trying to create a dynamic set of dropdown boxes, using jQuery/AJAX and
I am trying to create a dynamic image of my friends using PHP's GD
I am trying to create a dynamic table using php but needed to get
I am trying to create dynamic menus from the database using the following example
I'm trying to create a dynamic grid using ExtJS. The grid is built and
I am trying to create a dynamic bar in HTML using javascript. I have
i am trying to create a dynamic multioption select using dynamic values for a
I am trying to create a dynamic menu by reading an XML file using

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.