aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-08-20 22:35:58 -0700
committerChris Rebert <[email protected]>2015-08-20 22:35:58 -0700
commit69f92408630707fe704eae309a71867adefa3d39 (patch)
tree1d258fcb3eef2c9797fdf2871922dd174f2098eb /docs
parent0372cc656de324d994f9aea9f52e868117fe3bda (diff)
downloadbootstrap-69f92408630707fe704eae309a71867adefa3d39.tar.xz
bootstrap-69f92408630707fe704eae309a71867adefa3d39.zip
forms.md: Fix link to disabled buttons docs
Diffstat (limited to 'docs')
-rw-r--r--docs/components/forms.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/components/forms.md b/docs/components/forms.md
index 53cf4d4b7..f45f207ca 100644
--- a/docs/components/forms.md
+++ b/docs/components/forms.md
@@ -462,7 +462,7 @@ Add the `disabled` attribute to a `<fieldset>` to disable all the controls withi
{% callout warning %}
#### Caveat about link functionality of `<a>`
-By default, browsers will treat all native form controls (`<input>`, `<select>` and `<button>` elements) inside a `<fieldset disabled>` as disabled, preventing both keyboard and mouse interactions on them. However, if your form also includes `<a ... class="btn btn-*">` elements, these will only be given a style of `pointer-events: none`. As noted in the section about [disabled state for buttons](#buttons-disabled) (and specifically in the sub-section for anchor elements), this CSS property is not yet standardized and isn't fully supported in Opera 18 and below, or in Internet Explorer 11, and won't prevent keyboard users from being able to focus or activate these links. So to be safe, use custom JavaScript to disable such links.
+By default, browsers will treat all native form controls (`<input>`, `<select>` and `<button>` elements) inside a `<fieldset disabled>` as disabled, preventing both keyboard and mouse interactions on them. However, if your form also includes `<a ... class="btn btn-*">` elements, these will only be given a style of `pointer-events: none`. As noted in the section about [disabled state for buttons](../buttons/#disabled-state) (and specifically in the sub-section for anchor elements), this CSS property is not yet standardized and isn't fully supported in Opera 18 and below, or in Internet Explorer 11, and won't prevent keyboard users from being able to focus or activate these links. So to be safe, use custom JavaScript to disable such links.
{% endcallout %}
{% callout danger %}