Is it possible to disable a buton of btn-group-justified?
Hi,
this is my btn-group-justified:
<div class="btn-group btn-group-justified" role="group" aria-label="Justified button group with nested dropdown">
<a onClick="DisabeButton(); " href="#" style="background: #E39C9D" class="btn btn-default" role="button" id="MyBtnOne">Button 1</a>
<a href="#" style="background: #E39C9D" class="btn btn-default" role="button" id="MyBtnTwo">Button 2</a>
</div>
This doesn't work:
function DisabeButton() {
document.getElementById("MyBtnTwo").disabled = true;
}
</script>
Any help?
Thanks.
