Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
Add feedback icons for inputs with Bootstrap
To add feedback icon, use the .has-feedback class in Bootstrap.
You can try to run the following code to set feedback icons −
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 = "form-group has-feedback"> <label class = "col-sm-2 control-label" for = "inputSuccess">Example</label> <div class="col-sm-10"> <input type = "text" class="form-control" id = "inputSuccess"> <span class = "glyphicon glyphicon-ok form-control-feedback"></span> </div> </div> </body> </html>
Advertisements
