I'm using the Bing API to do internet search. I would like to paginate the results and recently I found a nice Jquery script which is supposed to do that. The script is very simple to understand:
$("input#searchbox").keyup(function() {
//how much items per page to show
var show_per_page = 60000;
//getting the amount of elements inside content div
var number_of_items = $('#txtresults ul').children().size();
//calculate the number of pages we are going to have
var number_of_pages = Math.ceil(webResultTotal/show_per_page);
The last line is what is determining the amount of pagination numbers: from the Bing API the 'webResultTotal' is the number of total results. So that is divided by the number 'show_per_page' I have set the amount to 60000 because otherwise the whole thing gets jammed, which is my first problem.
A. I would like to show_per_page 12 but it seems this math is to difficult or whatever so it gets jammed.
B. It only does something at the second keydown while it should paginate on the first keydown.
So in conclusion: How can I get it to paginate at the first keystroke with 12 'show_per_page' without getting jammed?
Here is a demo: JsBin
I have put the pagination code right after function webResults.
ps I updated the link, I took out all the text results for better view.