I'm struggling to disable one of the modal footer buttons in materialize.css. I tried using disabled="disabled"
, but it doesn't seem to be working. You can see my example on jsfiddle.
<a class="waves-effect waves-light btn modal-trigger" href="#modal1">Modal</a>
<!-- Modal Structure -->
<div id="modal1" class="modal modal-fixed-footer">
<div class="modal-content">
<h4>Modal Header</h4>
<p>A bunch of text</p>
</div>
<div class="modal-footer">
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">Agree</a>
<a href="#!" class="modal-action modal-close waves-effect waves-green btn-flat ">I want to disable this button</a>
</div>
</div>