I was checking out a form I made on my iPad and it appears that adding disabled to a <button> tag doesn't actually disable the button. 
Adding disabled to an <input> tag works but not <button>. 
So
<input type = "text" disabled />
works, but
<button disabled>Hola</button>
doesn't. Thoughts on ways to fix this? Or is it just a safari bug?
You can use the disabled attribute on an <input /> tag but not a <button /> Tag.  Button isn't officially depreciated but because you can do 
<input type="submit" value="Click Me">
for form submission capabilities and
<input type="button" value="Click Me">
for a generic plain-old button there is no real point to having a whole different tag. Furthermore you can disable both a submit and a regular button by adding disabled
<input type="submit" value="You can't Click Me" disabled>
<input type="button" value="Click Me" disabled>
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With