I have the following button:
<a type="button" class="btn btn-primary disabledButton">Download</a>
I want to disable it using the .prop
property of JQuery. Like this:
$('.disabledButton').prop('disabled', true);
However, it is not working as nothing changed. Any ideas?