Hey iv been looking for a solution using JQuery or by modifying the twitter bootstrap class to prevent a button from performing its onclick action aka disabling it. However the results iv found so far have not performed correctly and mostly only give an appearance of being disabled but still perform correctly:
$("#previous").prop('disabled', true);
$("#next").prop('disabled', true);
The purpose is to prevent swapping tabs when the tab index is too high or too low. Most other solutions seem to contain huge amounts of what is seemingly unnecessary Javascript for a feature that seems relatively simple.
Such as this :
$("#previous").click(function() {
var me = $(this);
me.unbind( "click");
})
Which is supposed to remove the bound function, however would mean also reattaching the event when the tab index increases. Is there a simpler solution available to temporarily disable a button or just prevent the default action from being carried out without removing the event or not displaying the button element?
Any help would be appreciated 🙂
5
Answers
You would have to prevent the default action using
event.preventDefault()
Let me show a simple example. Here, a button becomes disabled once you click it.
If you are using twitter bootstrap there is this exactly behavior already implemented for you.
You just need to change the class
.disabled
of the element you want to disable.Like:
Here is my solution:
Javascript
CSS
Here is the best way to do this .
$("#previous").prop({disabled: true});
using this actually disables the button ,not only adding a class for faded view