Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to create paging in JavaScript, similar to most paging you see now, where if there's a lot of pages, it will use dots to break up the page display. I.e., (1 2 ... 22 23 24 25 26 27 28 ... 110 111)

Here's the code I have so far, however this isn't working. I only displays the current page. Any ideas what I'm missing here?

Just for FYI - You'll notice I'm using _.range(), this is from Underscore.js and $.inArray(), this is from jQuery.

You'll also notice i have iPage, by default my paging starts at 0 (page is the current page index I'm on), so I'm just adding 1 for the sake of this display - I've tried both ways and I get the same issue.

Thanks a lot for any help!

EDIT: I just added an else statement below, now it shows (1 2 3 21), 21 being the last page, 1 being the page I'm on.

                var midRange = 7;
                var paging = '';
                var iPage = page + 1;

                if(totalPages > 10) {

                    var startRange = iPage - Math.floor(midRange / 2);
                    var endRange   = page + Math.floor(midRange / 2);

                    if(startRange <= 0) {
                        endRange += Math.abs(startRange + 1);
                        startRange = 1;
                    }

                    if(endRange > totalPages) {
                        startRange -= (endRange - totalPages);
                        endRange = totalPages;
                    }

                    var range = _.range(startRange, endRange);

                    for(i = 1; i <= totalPages; i++) {

                        if(range[0] > 2 && i == range[0]) {

                            paging += ' ... ';
                            console.log(paging);
                        }

                        inArray = $.inArray(i, range);

                        if (inArray > -1)
                            isInArray = true;
                        else 
                            isInArray = false;


                        if(i == 0 || i == totalPages || isInArray) {
                            if(i == iPage) {

                                paging += '<a href="#"><b>'+i+'</b></a>';
                                console.log(paging);
                            } else {
paging += '<a href="#">'+i+'</a>';

}
                        }

                        if(range[midRange-1] < totalPages && i == range[midRange-1]) {
                            paging += ' ... ';
                            console.log(paging);
                        }                   
                    }

                } else {

                    for(i = 1; i <= totalPages; i++) {

                        if(i == iPage) {
                            paging += '<a href="#"><b>'+i+'</b></a>';
                            console.log(paging);
                        } else {
                            paging += '<a href="#">'+i+'</a>';
                            console.log(paging);
                        }

                    }   

                }
share|improve this question

1 Answer

You might consider using "logarithmic" style pagination. See my post here: How to do page navigation for many, many pages? Logarithmic page navigation. Otherwise it actually isn't easy to get to any page in the middle of a '...' range by clicking navigation links. Code in PHP and ASP is included in my answer; it shouldn't be hard to convert to javascript.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.