Bootstarp button disable example
If you are using Bootstrap UI framework in your project and want to disable a button element, you can simply do it by adding attribute disabled="true",
Example:
<button id="myButton" type="button" class="btn btn-primary" disabled="true">Primary</button>
If you want to disable the button programmatically via JavaScript, you can do
document.getElementById("myButton").disabled = true;
If you want to achieve this using JQuery you can try the below code,
$('myButton').prop('disabled', true);
More Posts related to Bootstrap,
- Rounded Images in Bootstrap framework
- Simple Login Page using Bootstrap
- Make Bootstrap Button look like a link
- Create Bootstrap carousel slider with Text
- What is Bootstrap Jumbotron and how to use it
- Align left align text in Bootstrap
- Right Align Text in Bootstrap framework
- Bootstrap tooltip not working
- How to add hint text in bootstrap input text field and text area
- How to Change Bootstrap Carousel Slide Speed
- Bootstrap Nav Menu Dropdown on hover
- [Solved] Bootstrap tooltip not working
More Posts:
- Android : Error in http connection java.net.SocketException: Permission denied - Android
- How to create Toast messages in Android - Android
- How to Search Something (string) in Android Studio Project like Eclipse - Android-Studio
- How to detect Browser and Operating System Name and Version using JavaScript - JavaScript
- Free Unlimited Calls from MTNL & BSNL Landlines from 1st May 2015 - HowTos
- Adding internet permission to Android Project - Android
- How to turn off Facebook autoplay videos on timeline - Facebook
- Android : How to make TextView Scrollable - Android
- Sharepoint Server 2016 installation Prerequisites with download links - SharePoint
- How to get current URL Location using Javascript HTML - JavaScript
- Android Toast position top - Android
- How to submit website to dmoz directory - HowTos
- SharePoint Server 2016 setup error - A system restart from a previous installation or update is pending. Restart your computer and run setup to continue. - SharePoint
- Java XML-RPC 3.1.x based web service example - Java
- Plug-in com.android.ide.eclipse.adt was unable to lead class Error - Android