Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Apr 24th, 2012  |  syntax: None  |  size: 0.57 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. jQuery Pajinate - everything is showing on page load
  2. $('#paging_container').pajinate({
  3.     items_per_page : 2,
  4.     num_page_links_to_display : 6,
  5.     abort_on_small_lists: true,
  6.     item_container_id : '.paging_content',
  7.     nav_panel_id : '.page_navigation'
  8. });
  9.        
  10. start_page : The page number you'd like to display first [default = 0]
  11.        
  12. $('#paging_container').pajinate({
  13.   items_per_page : 2,
  14.   num_page_links_to_display : 6,
  15.   abort_on_small_lists: true,
  16.   item_container_id : '.paging_content',
  17.   nav_panel_id : '.page_navigation',
  18.   start_page: 0 //here's our addition
  19. });