- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Disable a pagination link with Bootstrap
Use the .disabled class in Bootstrap with the .pagination to disable a pagination link.
You can try to run the following code to disable pagination link
Example
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</title> <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet"> <script src = "/scripts/jquery.min.js"></script> <script src = "/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class = "container"> <h2>Java Tutorial</h2> <p>The following are the lessons of Java Tutorial:</p> <ul class = "pagination"> <li class = "disabled"><a href = "#">1</a></li> <li><a href = "#">2</a></li> <li><a href = "#">3</a></li> <li><a href = "#">4</a></li> <li><a href = "#">5</a></li> <li><a href = "#">6</a></li> <li><a href = "#">7</a></li> <li class = "disabled"><a href = "#">8</a></li> </ul> </div> </body> </html>
- Related Articles
- Disable a button with Bootstrap
- Disable a dropdown item with Bootstrap
- Bootstrap .pagination class
- Bootstrap pagination-lg class
- Bootstrap pagination-sm class
- Sizing Bootstrap pagination-* class
- Disable a Bootstrap Button
- Create a button look like a link with Bootstrap
- How to disable a href link in CSS?
- Bootstrap Collapsible link
- How can I disable JavaScript click function if link starts with #?
- How to align pagination in bootstrap 4?
- How to create pagination in Bootstrap 4?
- Bootstrap .btn-link class
- Bootstrap alert-link class

Advertisements