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 559857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:16:55+00:00 2026-05-13T12:16:55+00:00

Hey, my script seems to be getting this warning message whenever I run it.

  • 0

Hey, my script seems to be getting this warning message whenever I run it.

This happens when I call a jquery function in the script. I have included the script below and put – Warning: Unresponsive Script – comment where I called the function. I don’t really know why I’m getting the warning message.

Here is the project Im working on, if you want to see it Click Here

I am trying to update the pagination numbers when filter options are selected. So when you select the color ‘yellow’ you get one result, which is ‘giant’ and there should only be 1 page number displayed as opposed to the 4.

If anyone has any ideas to get this working properly that would be amazing. Thanks.

JQuery Script:

<script>
$(document).ready(function(){

function paginateIt(){
 //how much items per page to show
 var show_per_page = 3; 
 //getting the amount of elements inside content div
 var number_of_items = $('#content ul').filter(":not(.hidden)").children().size();

 //calculate the number of pages we are going to have
 var number_of_pages = Math.ceil(number_of_items/show_per_page);

 //set the value of our hidden input fields
 $('#current_page').val(0);
 $('#show_per_page').val(show_per_page);

 //now when we got all we need for the navigation let's make it '

 /* 
 what are we going to have in the navigation?
  - link to previous page
  - links to specific pages
  - link to next page
 */
 var navigation_html = '<a class="previous_link" href="javascript:previous();">Prev</a>';
 var current_link = 0;
 while(number_of_pages > current_link){
  navigation_html += '<a class="page_link" href="javascript:go_to_page(' + current_link +')" longdesc="' + current_link +'">'+ (current_link + 1) +'</a>';
  current_link++;
 }
 navigation_html += '<a class="next_link" href="javascript:next();">Next</a>';

 $('#page_navigation').html(navigation_html);

 //add active_page class to the first page link
 $('#page_navigation .page_link:first').addClass('active_page');

 //hide all the elements inside content div
 $('#content ul').filter(":not(.hidden)").children().css('display', 'none');

 //and show the first n (show_per_page) elements
 $('#content ul').filter(":not(.hidden)").children().slice(0, show_per_page).css('display', 'block');

// Start filter script
(function($) {

  $.fn.randomize = function(){
    return $(this).sort(function() {return 0.5 - Math.random()});
  }

  $.fn.filterprojects = function(settings) {
    settings = $.extend({
      animationSpeed: 900,
      animationPulse: 100,
      animationEase: "linear",
      activeClass: "active",
      allTag: "all",
      randomize: true,
      show: { width: "show", opacity: "show" },
      hide: { width: "hide", opacity: "hide" },
      filterTagSelector: [] // specify at least one 
      }, settings);

      $(this).each(function(i, o){
        var _elements = $(this).children();

        /* Binding the filter */
        $(this).bind("filter", function(){
          var _groups = [];
          var _filtered_elements = _elements;
          $.each(settings.filterTagSelector, function(k, j){
            _groups[k] = [];
            $(this + "." + settings.activeClass).each(function(){ 
              if(!$(this).hasClass(settings.allTag) && this.hash != undefined) { _groups[k].push(this.hash.substring(1)); }
            });
            if(_groups[k].length > 0){
              _filtered_elements = _filtered_elements.filter("." + _groups[k].join(",.")); 
            }
          });

          /* Randomize */
          if(settings.randomize){
            _filtered_elements = _filtered_elements.randomize();
            _elements = _elements.randomize();
          }
          /* Show */
          _filtered_elements.each(function(i,o){
            $(this).queue(function(){
              $(this).animate({left: "+0"}, (settings.animationPulse*i)); // dirty trick :)
              $(this).animate(settings.show, settings.animationSpeed);
              $(this).dequeue()
            });
          });

          /* Hide */
          _elements.not(_filtered_elements).each(function(i,o){
            $(this).queue(function(){
              $(this).animate({left: "+0"}, (settings.animationPulse*i)); // dirty trick :)
              $(this).animate(settings.hide, settings.animationSpeed);
              $(this).dequeue()
            });
          });
        });
        /* Setup filter selectors */
        $.each(settings.filterTagSelector, function(k, j){
          $(""+this).click(function(e){
            e.preventDefault();
            if($(this).hasClass(settings.allTag)){
              $(j).removeClass(settings.activeClass);
              $(this).addClass(settings.activeClass);
            } else {
              $(this).hasClass(settings.activeClass) ? $(this).removeClass(settings.activeClass) : $(this).addClass(settings.activeClass);
              $(j+"."+settings.activeClass).length > 0 ? $(j+"."+settings.allTag).removeClass(settings.activeClass) : $(j+"."+settings.allTag).addClass(settings.activeClass);
            }
            /* Triggering the filter */ 
            $(o).trigger("filter");
          })
        });
      });      
      return this
    };

// Warning: Unresponsive Script
paginateIt();


})(jQuery); // End filter script

} // End PaginateIt script
paginateIt();


}); // End of JS script.

function previous(){

 new_page = parseInt($('#current_page').val()) - 1;
 //if there is an item before the current active link run the function
 if($('.active_page').prev('.page_link').length==true){
  go_to_page(new_page);
 }

}

function next(){
 new_page = parseInt($('#current_page').val()) + 1;
 //if there is an item after the current active link run the function
 if($('.active_page').next('.page_link').length==true){
  go_to_page(new_page);
 }

}
function go_to_page(page_num){
 //get the number of items shown per page
 var show_per_page = parseInt($('#show_per_page').val());

 //get the element number where to start the slice from
 start_from = page_num * show_per_page;

 //get the element number where to end the slice
 end_on = start_from + show_per_page;

 //hide all children elements of content div, get specific items and show them
 $('#content ul').filter(":not(.hidden)").children().css('display', 'none').slice(start_from, end_on).css('display', 'block');

 /*get the page link that has longdesc attribute of the current page and add active_page class to it
 and remove that class from previously active page link*/
 $('.page_link[longdesc=' + page_num +']').addClass('active_page').siblings('.active_page').removeClass('active_page');

 //update the current page input field
 $('#current_page').val(page_num);
} 
</script>
  • 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-13T12:16:55+00:00Added an answer on May 13, 2026 at 12:16 pm

    Unresponsive Script Fix

    It looks like you’re just calling paginateIt recursively. The paginateIt function does a bunch of work and then calls itself again, infinitely.

    To fix this, remove the call to paginateIt() just below your comment “Warning: Unresponsive Script” comment.

    Here’s the simplified structure of your code so that you can see the problem more clearly:

    function paginateIt(){
    
        // Start filter script
        (function($) {
    
            $.fn.filterprojects = function(settings) {
                $(this).each(function(i, o){
                    /* Binding the filter */
                    /* Setup filter selectors */
                });      
            };
    
            // Warning: Unresponsive Script
            paginateIt();
    
        })(jQuery); // End filter script
    
    } // End PaginateIt script
    
    paginateIt();
    

    Re-pagination Fix

    I would have written this line of code:

    //getting the amount of elements inside content div
    var number_of_items = $('#content ul').filter(":not(.hidden)").children().size();
    

    as this:

    var number_of_items = $('#content ul').children().filter(":visible").length;
    

    Also, you’ll want to call paginateIt after the animation completes for that to work correctly. You’ll probably want to do this in an animation callback, but here’s a temporary workaround:

    /* Triggering the filter */ 
    $(o).trigger("filter");
    setTimeout(paginateIt, 1500);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 284k
  • Answers 284k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer You have one address-of too much: // notice: "set" instead… May 13, 2026 at 4:24 pm
  • Editorial Team
    Editorial Team added an answer Eclipse WTP adds the source attribute to the project-related <Context>… May 13, 2026 at 4:24 pm
  • Editorial Team
    Editorial Team added an answer In addition to using Zend_Session or any of these PEAR… May 13, 2026 at 4:24 pm

Related Questions

Hey guys, I am very new to AJAX and and working on a rating
Hey guys, hope this isn't too much of a n00b question I'm mainly a
NOTE: Solved my own problem, it seems. See the edits. I am trying to
I know very little about JavaScript but despite this I'm trying to cobble something
Let's say you don't want other sites to frame your site in an <iframe>

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.