flaviusmatis / simplePagination.js

A simple jQuery pagination plugin.
Other
784 stars 402 forks source link

Pagination is not working with IE 11 #151

Open ravibkumar opened 4 years ago

ravibkumar commented 4 years ago

Hello, I have been using this pagination and it has been working great with Chrome,Edge and Mozilla but it is not working with IE 11 SCRIPT1003: Expected ':' error my code is below

timgws commented 4 years ago
$(function() {$(".pages").pagination({
  items: 6748,
  itemsOnPage: 10,
  currentPage: 1,
  cssStyle: 'light-theme',
  onPageClick: function (pageNumber, event) {
      window.location.href="bollywood.asp?page="+pageNumber;
  }
});
});