TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Guest User
Tech Writer
103
13.2k
Implement Pagination Using Jquery.
Jun 1 2021 5:03 AM
How to implement Pagination Using Jquery (Not User DataTable) and I have see this example
$('#pagination-demo').twbsPagination({
totalPages: 16,--Here Set static Page But I want to this is dynamic
visiblePages: 6,
next: 'Next',
prev: 'Prev',
onPageClick: function (event, page) {
//fetch content and render here
$('#page-content').text('Page ' + page) + ' content here';
}
});
Reply
Answers (
5
)
concatenate value in input.
Implement Pagination Using Jquery.