diff options
| author | Chris Rebert <[email protected]> | 2015-10-19 23:45:23 -0700 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-10-19 23:45:26 -0700 |
| commit | dd78e759915ed6a4678800b8aa24fd5bcc3ee728 (patch) | |
| tree | 74f4f740e759b4dd197fe473c1e4b973b4879804 /docs/getting-started | |
| parent | 5b113b2c7183df46c6e1b460683f53b43d929bfd (diff) | |
| download | bootstrap-dd78e759915ed6a4678800b8aa24fd5bcc3ee728.tar.xz bootstrap-dd78e759915ed6a4678800b8aa24fd5bcc3ee728.zip | |
docs/getting-started/javascript.md: Hyperlink preventDefault() mention
[skip sauce]
Diffstat (limited to 'docs/getting-started')
| -rw-r--r-- | docs/getting-started/javascript.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting-started/javascript.md b/docs/getting-started/javascript.md index 75d835b60..debc4dcf5 100644 --- a/docs/getting-started/javascript.md +++ b/docs/getting-started/javascript.md @@ -73,7 +73,7 @@ $.fn.bootstrapBtn = bootstrapButton // give $().bootstrapBtn the Boot Bootstrap provides custom events for most plugins' unique actions. Generally, these come in an infinitive and past participle form - where the infinitive (ex. `show`) is triggered at the start of an event, and its past participle form (ex. `shown`) is triggered on the completion of an action. -All infinitive events provide `preventDefault` functionality. This provides the ability to stop the execution of an action before it starts. +All infinitive events provide [`preventDefault()`](https://developer.mozilla.org/en-US/docs/Web/API/Event/preventDefault) functionality. This provides the ability to stop the execution of an action before it starts. {% highlight js %} $('#myModal').on('show.bs.modal', function (e) { |
