I am facing an issue with a button that has the "disabled" attribute, which I am trying to enable using jQuery based on certain conditions. The challenge is that while Chrome and IE have no trouble reading the "disabled" attribute, Firefox seems to be having difficulty.
The code for my button is
<button disabled type="button" class="btn btn-secondary button_confirm" title="Title here">Confirm</button>
I have also attempted using disabled=true
and disabled=disabled
, but neither solution has proven effective so far.
If anyone could offer some assistance, it would be greatly appreciated. Thank you.