I've created a link in HTML with Zurb Foundation's button class:
<a href="/time_track/check_out" class="large button disabled">Check-out</a>
Looks disabled, that's great. However, I can still click on it and it takes me to /time_track/check_out
! I even tried adding disabled="disabled"
as an attribute to the a
tag, didn't help.
Do Zurb Foundation buttons support disabled buttons? The page referenced above says all you have to do is "add .disabled to any button and it will look and act disabled." However, even the sample disabled button they show is clickable!