Overview

Individual or compiled

Plugins can be included individually (using Bootstrap's individual *.js files), or all at once (using bootstrap.js or the minified bootstrap.min.js).

Using the compiled JavaScript

Both bootstrap.js and bootstrap.min.js contain all plugins in a single file. Include only one.

Plugin dependencies

Some plugins and CSS components depend on other plugins. If you include plugins individually, make sure to check for these dependencies in the docs. Also note that all plugins depend on jQuery (this means jQuery must be included before the plugin files). Consult our bower.json to see which versions of jQuery are supported.

Data attributes

You can use all Bootstrap plugins purely through the markup API without writing a single line of JavaScript. This is Bootstrap's first-class API and should be your first consideration when using a plugin.

That said, in some situations it may be desirable to turn this functionality off. Therefore, we also provide the ability to disable the data attribute API by unbinding all events on the document namespaced with data-api. This looks like this:

$(document).off('.data-api')

Alternatively, to target a specific plugin, just include the plugin's name as a namespace along with the data-api namespace like this:

$(document).off('.alert.data-api')

Only one plugin per element via data attributes

Don't use data attributes from multiple plugins on the same element. For example, a button cannot both have a tooltip and toggle a modal. To accomplish this, use a wrapping element.

Syntax for Data Attribute Options

  • Quotes and apostrophes should be reversed for passing an object through data attributes. While the Wrong example below can be formatted with " HTML character references for the internal quotation marks instead of apostrophes, only use this approach if required by another system. For readability and keystroke brevity, use the Correct example's syntax below.
  • To further improve readability, you may format each property on separate lines as suggested in the example below.
  • Fractions must be preceded with a leading zero (e.g., .5 = 0.5)
  • The last item in the object list must not have a comma following its entry

Programmatic API

We also believe you should be able to use all Bootstrap plugins purely through the JavaScript API. All public APIs are single, chainable methods, and return the collection acted upon.

$('.btn.danger').button('toggle').addClass('fat')

All methods should accept an optional options object, a string which targets a particular method, or nothing (which initiates a plugin with default behavior):

$('#myModal').modal()                      // initialized with defaults
$('#myModal').modal({ keyboard: false })   // initialized with no keyboard
$('#myModal').modal('show')                // initializes and invokes show immediately

Each plugin also exposes its raw constructor on a Constructor property: $.fn.popover.Constructor. If you'd like to get a particular plugin instance, retrieve it directly from an element: $('[rel="popover"]').data('popover').

Default settings

You can change the default settings for a plugin by modifying the plugin's Constructor.DEFAULTS object:

$.fn.modal.Constructor.DEFAULTS.keyboard = false // changes default for the modal plugin's `keyboard` option to false

No conflict

Sometimes it is necessary to use Bootstrap plugins with other UI frameworks. In these circumstances, namespace collisions can occasionally occur. If this happens, you may call .noConflict on the plugin you wish to revert the value of.

var bootstrapButton = $.fn.button.noConflict() // return $.fn.button to previously assigned value
$.fn.bootstrapBtn = bootstrapButton            // give $().bootstrapBtn the Bootstrap functionality

Events

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.

As of 3.0.0, all Bootstrap events are namespaced.

All infinitive events provide preventDefault functionality. This provides the ability to stop the execution of an action before it starts.

$('#myModal').on('show.bs.modal', function (e) {
  if (!data) return e.preventDefault() // stops modal from being shown
})

Sanitizer

Tooltips and Popovers use our built-in sanitizer to sanitize options which accept HTML.

The default whiteList value is the following:

var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i
var DefaultWhitelist = {
  // Global attributes allowed on any supplied element below.
  '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],
  a: ['target', 'href', 'title', 'rel'],
  area: [],
  b: [],
  br: [],
  col: [],
  code: [],
  div: [],
  em: [],
  hr: [],
  h1: [],
  h2: [],
  h3: [],
  h4: [],
  h5: [],
  h6: [],
  i: [],
  img: ['src', 'alt', 'title', 'width', 'height'],
  li: [],
  ol: [],
  p: [],
  pre: [],
  s: [],
  small: [],
  span: [],
  sub: [],
  sup: [],
  strong: [],
  u: [],
  ul: []
}

If you want to add new values to this default whiteList you can do the following:

var myDefaultWhiteList = $.fn.tooltip.Constructor.DEFAULTS.whiteList

// To allow table elements
myDefaultWhiteList.table = []

// To allow td elements and data-option attributes on td elements
myDefaultWhiteList.td = ['data-option']

// You can push your custom regex to validate your attributes.
// Be careful about your regular expressions being too lax
var myCustomRegex = /^data-my-app-[\w-]+/
myDefaultWhiteList['*'].push(myCustomRegex)

If you want to bypass our sanitizer because you prefer to use a dedicated library, for example DOMPurify, you should do the following:

$('#yourTooltip').tooltip({
  sanitizeFn: function (content) {
    return DOMPurify.sanitize(content)
  }
})

Browsers without document.implementation.createHTMLDocument

In case of browsers that don't support document.implementation.createHTMLDocument, like Internet Explorer 8, the built-in sanitize function returns the HTML as is.

If you want to perform sanitization in this case, please specify sanitizeFn and use an external library like DOMPurify.

Version numbers

The version of each of Bootstrap's jQuery plugins can be accessed via the VERSION property of the plugin's constructor. For example, for the tooltip plugin:

$.fn.tooltip.Constructor.VERSION // => "3.4.1"

No special fallbacks when JavaScript is disabled

Bootstrap's plugins don't fall back particularly gracefully when JavaScript is disabled. If you care about the user experience in this case, use <noscript> to explain the situation (and how to re-enable JavaScript) to your users, and/or add your own custom fallbacks.

Third-party libraries

Bootstrap does not officially support third-party JavaScript libraries like Prototype or jQuery UI. Despite .noConflict and namespaced events, there may be compatibility problems that you need to fix on your own.

Add-ons

Add-Ons are components that must be loaded separately from the LXCore framework. By separating the components in this manner, the site avoids the bloat of loading unneeded components when they are generally going to be used on a small group of pages. Instructions for each add-on component may be found below.

Detect detect.js

Detect analyzes a client's user agent string to parse the client's operating system.

Loading the Component

Add the following in the page, replacing the "?"s with the appropriate version of LXCore.

<script src="//media.lexmark.com/www/lxkfef/v?.?.?/js/detect.js"></script>

Usage

Use the following to initiate the component

  • var obj = lxk.detect(); - returns JSON object based on user agent string of browser being used
  • var obj = lxk.detect("..."); - returns JSON object based on user agent string being passed

JSON Object

The JSON object that is returned has the following info:

Object Description
obj.os.raw raw user agent string
obj.os.check regex result of OS and OS version (if available)
obj.os.family The broad family for the OS (e.g., Windows, macOS, Linux)
obj.os.brand The brand family name for the OS (e.g., Debian, Ubuntu, Mandrake Linux, etc.)
obj.os.bit The bit depth of the OS (if available)
obj.os.version The version of the OS (may include letters)
obj.os.altVersion An alternative version of the OS (e.g., "NT 6.2" for Windows 8)
obj.os.name The full name of the OS with its version

Test Pages

Note: OS List Test page contains a list and sample user agent strings for OSs that were found online.

Affix affix.js

Example

The affix plugin toggles position: fixed; on and off, emulating the effect found with position: sticky;. The subnavigation on the right is a live demo of the affix plugin.


Usage

Use the affix plugin via data attributes or manually with your own JavaScript. In both situations, you must provide CSS for the positioning and width of your affixed content.

Note: Do not use the affix plugin on an element contained in a relatively positioned element, such as a pulled or pushed column, due to a Safari rendering bug.

Positioning via CSS

The affix plugin toggles between three classes, each representing a particular state: .affix, .affix-top, and .affix-bottom. You must provide the styles, with the exception of position: fixed; on .affix, for these classes yourself (independent of this plugin) to handle the actual positions.

Here's how the affix plugin works:

  1. To start, the plugin adds .affix-top to indicate the element is in its top-most position. At this point no CSS positioning is required.
  2. Scrolling past the element you want affixed should trigger the actual affixing. This is where .affix replaces .affix-top and sets position: fixed; (provided by Bootstrap's CSS).
  3. If a bottom offset is defined, scrolling past it should replace .affix with .affix-bottom. Since offsets are optional, setting one requires you to set the appropriate CSS. In this case, add position: absolute; when necessary. The plugin uses the data attribute or JavaScript option to determine where to position the element from there.

Follow the above steps to set your CSS for either of the usage options below.

Via data attributes

To easily add affix behavior to any element, just add data-spy="affix" to the element you want to spy on. Use offsets to define when to toggle the pinning of an element.

<div data-spy="affix" data-offset-top="60" data-offset-bottom="200">
  ...
</div>

Via JavaScript

Call the affix plugin via JavaScript:

$('#myAffix').affix({
  offset: {
    top: 100,
    bottom: function () {
      return (this.bottom = $('.footer').outerHeight(true))
    }
  }
})

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-offset-top="200".

Name type default description
offset number | function | object 10 Pixels to offset from screen when calculating position of scroll. If a single number is provided, the offset will be applied in both top and bottom directions. To provide a unique, bottom and top offset just provide an object offset: { top: 10 } or offset: { top: 10, bottom: 5 }. Use a function when you need to dynamically calculate an offset.
target selector | node | jQuery element the window object Specifies the target element of the affix.

Methods

.affix(options)

Activates your content as affixed content. Accepts an optional options object.

$('#myAffix').affix({
  offset: 15
})

.affix('checkPosition')

Recalculates the state of the affix based on the dimensions, position, and scroll position of the relevant elements. The .affix, .affix-top, and .affix-bottom classes are added to or removed from the affixed content according to the new state. This method needs to be called whenever the dimensions of the affixed content or the target element are changed, to ensure correct positioning of the affixed content.

$('#myAffix').affix('checkPosition')

Events

Bootstrap's affix plugin exposes a few events for hooking into affix functionality.

Event Type Description
affix.bs.affix This event fires immediately before the element has been affixed.
affixed.bs.affix This event is fired after the element has been affixed.
affix-top.bs.affix This event fires immediately before the element has been affixed-top.
affixed-top.bs.affix This event is fired after the element has been affixed-top.
affix-bottom.bs.affix This event fires immediately before the element has been affixed-bottom.
affixed-bottom.bs.affix This event is fired after the element has been affixed-bottom.

Alert messages alert.js

Example alerts

Add dismiss functionality to all alert messages with this plugin.

When using a .close button, it must be the first child of the .alert-dismissible and no text content may come before it in the markup.

Usage

Just add data-dismiss="alert" to your close button to automatically give an alert close functionality. Closing an alert removes it from the DOM.

<button type="button" class="close" data-dismiss="alert" aria-label="Close">
  <span aria-hidden="true">&times;</span>
</button>

To have your alerts use animation when closing, make sure they have the .fade and .in classes already applied to them.

Methods

$().alert()

Makes an alert listen for click events on descendant elements which have the data-dismiss="alert" attribute. (Not necessary when using the data-api's auto-initialization.)

$().alert('close')

Closes an alert by removing it from the DOM. If the .fade and .in classes are present on the element, the alert will fade out before it is removed.

Events

Bootstrap's alert plugin exposes a few events for hooking into alert functionality.

Event Type Description
close.bs.alert This event fires immediately when the close instance method is called.
closed.bs.alert This event is fired when the alert has been closed (will wait for CSS transitions to complete).
$('#myAlert').on('closed.bs.alert', function () {
  // do something…
})

Buttons button.js

Do more with buttons. Control button states or create groups of buttons for more components like toolbars.

Cross-browser compatibility

Firefox persists form control states (disabledness and checkedness) across page loads. A workaround for this is to use autocomplete="off". See Mozilla bug #654072.

Stateful

Add data-loading-text="Loading..." to use a loading state on a button.

This feature is deprecated since v3.3.5 and has been removed in v4.

Use whichever state you like!

For the sake of this demonstration, we are using data-loading-text and $().button('loading'), but that's not the only state you can use. See more on this below in the $().button(string) documentation.

<button type="button" id="myButton" data-loading-text="Loading..." class="btn btn-primary" autocomplete="off">
  Loading state
</button>

<script>
  $('#myButton').on('click', function () {
    var $btn = $(this).button('loading')
    // business logic...
    $btn.button('reset')
  })
</script>

Single toggle

Add data-toggle="button" to activate toggling on a single button.

Pre-toggled buttons need .active and aria-pressed="true"

For pre-toggled buttons, you must add the .active class and the aria-pressed="true" attribute to the button yourself.

<button type="button" class="btn btn-primary" data-toggle="button" aria-pressed="false" autocomplete="off">
  Single toggle
</button>

Checkbox / Radio

Add data-toggle="buttons" to a .btn-group containing checkbox or radio inputs to enable toggling in their respective styles.

Preselected options need .active

For preselected options, you must add the .active class to the input's label yourself.

Visual checked state only updated on click

If the checked state of a checkbox button is updated without firing a click event on the button (e.g. via <input type="reset"> or via setting the checked property of the input), you will need to toggle the .active class on the input's label yourself.

<div class="btn-group" data-toggle="buttons">
  <label class="btn btn-primary active">
    <input type="checkbox" autocomplete="off" checked> Checkbox 1 (pre-checked)
  </label>
  <label class="btn btn-primary">
    <input type="checkbox" autocomplete="off"> Checkbox 2
  </label>
  <label class="btn btn-primary">
    <input type="checkbox" autocomplete="off"> Checkbox 3
  </label>
</div>
<div class="btn-group" data-toggle="buttons">
  <label class="btn btn-primary active">
    <input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
  </label>
  <label class="btn btn-primary">
    <input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
  </label>
  <label class="btn btn-primary">
    <input type="radio" name="options" id="option3" autocomplete="off"> Radio 3
  </label>
</div>

Methods

$().button('toggle')

Toggles push state. Gives the button the appearance that it has been activated.

$().button('reset')

Resets button state - swaps text to original text. This method is asynchronous and returns before the resetting has actually completed.

$().button(string)

Swaps text to any data defined text state.

<button type="button" id="myStateButton" data-complete-text="finished!" class="btn btn-primary" autocomplete="off">
  ...
</button>

<script>
  $('#myStateButton').on('click', function () {
    $(this).button('complete') // button text will be "finished!"
  })
</script>

Carousel carousel.js

A slideshow component for cycling through elements, like a carousel. Nested carousels are not supported.

<div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
  <!-- Indicators -->
  <ol class="carousel-indicators">
    <li data-target="#carousel-example-generic" data-slide-to="0" class="active"><span></span></li>
    <li data-target="#carousel-example-generic" data-slide-to="1"><span></span></li>
    <li data-target="#carousel-example-generic" data-slide-to="2"><span></span></li>
  </ol>

  <!-- Wrapper for slides -->
  <div class="carousel-inner" role="listbox">
    <div class="item active">
      <img src="..." alt="...">
      <div class="carousel-caption">
        ...
      </div>
    </div>
    <div class="item">
      <img src="..." alt="...">
      <div class="carousel-caption">
        ...
      </div>
    </div>
    ...
  </div>

  <!-- Controls -->
  <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
    <span class="icon icon-caret_left" aria-hidden="true"></span>
    <span class="sr-only">Previous</span>
  </a>
  <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
    <span class="icon icon-caret_right" aria-hidden="true"></span>
    <span class="sr-only">Next</span>
  </a>
</div>

Optional captions

Add captions to your slides easily with the .carousel-caption element within any .item. Place just about any optional HTML within there and it will be automatically aligned and formatted.

<div class="item">
  <img src="..." alt="...">
  <div class="carousel-caption">
    <h3>...</h3>
    <p>...</p>
  </div>
</div>

Adding thumbnails to the carousel requires removing the indicator dots and adding a second carousel with a nested grid after the main carousel. As well as, adding the data-thumbnails attribute to the main carousel for functionality and a class of .carousel-thumbnails for proper styling.

The added data attribute needs an id to reference the thumbnail carousel (i.e. data-thumbnails="#carousel-thumbnails"). The left and right indicator controls are optional and hold the same structure as before.

The number of columns of the thumbnail carousel can vary dependant on the design and the number of columns put into the html structure.

<div id="carousel-example-thumbnail" class="carousel slide" data-ride="carousel" data-thumbnails="#carousel-thumbnails">
  ...
</div> <!-- End of Main Carousel -->

<!-- Thumbnail Carousel -->
<div id="carousel-thumbnails" class="carousel slide carousel-thumbnails" data-ride="carousel">

  <!-- Wrapper and Nested Grid for Thumbnails -->
  <div class="carousel-inner" role="listbox">
    <div class="item active">
      <div class="row">
        <div class="col-xs-4 active" data-target="#carousel-example-thumbnail" data-slide-to="0">
          <img class="img-responsive" src="https://fakeimg.pl/900x500" alt="First slide">
        </div>
        <div class="col-xs-4" data-target="#carousel-example-thumbnail" data-slide-to="1">
          <img class="img-responsive" src="https://fakeimg.pl/900x500" alt="Second slide">
        </div>
        <div class="col-xs-4" data-target="#carousel-example-thumbnail" data-slide-to="2">
          <img class="img-responsive" src="https://fakeimg.pl/900x500" alt="Third slide">
        </div>
      </div>
    </div>
    <div class="item">
      <div class="row">
        <div class="col-xs-4" data-target="#carousel-example-thumbnail" data-slide-to="3">
          <img class="img-responsive" src="https://fakeimg.pl/900x500" alt="Fourth slide">
        </div>
        <div class="col-xs-4" data-target="#carousel-example-thumbnail" data-slide-to="4">
          <img class="img-responsive" src="https://fakeimg.pl/900x500" alt="Fifth slide">
        </div>
        <div class="col-xs-4" data-target="#carousel-example-thumbnail" data-slide-to="5">
          <img class="img-responsive" src="https://fakeimg.pl/900x500" alt="Sixth slide">
        </div>
      </div>
    </div>
  </div>

  <!-- Controls -->
  <a class="left carousel-control" href="#carousel-thumbnails" role="button" data-slide="prev">
    ...
  </a>
  <a class="right carousel-control" href="#carousel-thumbnails" role="button" data-slide="next">
    ...
  </a>
</div>
    $("#carousel-frame").html('...');
    $('#carousel-example-thumbnail-2').carousel({ interval: 1000});
    $(document).lxk_carousel();

Multiple carousels

Carousels require the use of an id on the outermost container (the .carousel) for carousel controls to function properly. When adding multiple carousels, or when changing a carousel's id, be sure to update the relevant controls.

Via data attributes

Use data attributes to easily control the position of the carousel. data-slide accepts the keywords prev or next, which alters the slide position relative to its current position. Alternatively, use data-slide-to to pass a raw slide index to the carousel data-slide-to="2", which shifts the slide position to a particular index beginning with 0.

The data-ride="carousel" attribute is used to mark a carousel as animating starting at page load. It cannot be used in combination with (redundant and unnecessary) explicit JavaScript initialization of the same carousel.

Via JavaScript

Call carousel manually with:

  $('.carousel').carousel();
  $(document).lxk_carousel(); //<-- Adds LXcore Stylings

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-interval="".

Name type default description
interval number 5000 The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.
pause string | null "hover" If set to "hover", pauses the cycling of the carousel on mouseenter and resumes the cycling of the carousel on mouseleave. If set to null, hovering over the carousel won't pause it.
wrap boolean true Whether the carousel should cycle continuously or have hard stops.
keyboard boolean true Whether the carousel should react to keyboard events.

.carousel(options)

Initializes the carousel with an optional options object and starts cycling through items.

$('.carousel').carousel({
  interval: 2000
})

.carousel('cycle')

Cycles through the carousel items from left to right.

.carousel('pause')

Stops the carousel from cycling through items.

.carousel(number)

Cycles the carousel to a particular frame (0 based, similar to an array).

.carousel('prev')

Cycles to the previous item.

.carousel('next')

Cycles to the next item.

Bootstrap's carousel class exposes two events for hooking into carousel functionality.

Both events have the following additional properties:

  • direction: The direction in which the carousel is sliding (either "left" or "right").
  • relatedTarget: The DOM element that is being slid into place as the active item.

All carousel events are fired at the carousel itself (i.e. at the <div class="carousel">).

Event Type Description
slide.bs.carousel This event fires immediately when the slide instance method is invoked.
slid.bs.carousel This event is fired when the carousel has completed its slide transition.
$('#myCarousel').on('slide.bs.carousel', function () {
  // do something…
})

Carousel Slick carousel-slick.js

A slicker and fancier carousel.

<section class="slider" data-slick-options>
  <div>
    <img src="https://fakeimg.pl/500x200?text=1">
  </div>
  <div>
    <img src="https://fakeimg.pl/500x200?text=2">
  </div>
  <div>
    <img src="https://fakeimg.pl/500x200?text=3">
  </div>
  <div>
    <img src="https://fakeimg.pl/500x200?text=4">
  </div>
  <div>
    <img src="https://fakeimg.pl/500x200?text=5">
  </div>
  <div>
    <img src="https://fakeimg.pl/500x200?text=6">
  </div>
</section>
<section class="slider" data-slick-options='{
  "dots": true,
  "infinite": true,
  "slidesToShow": 4,
  "slidesToScroll": 4
}'>
  <div>
    <img src="https://fakeimg.pl/350x300?text=1">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=2">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=3">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=4">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=5">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=6">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=7">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=8">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=9">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=10">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=11">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=12">
  </div>
</section>
<!--main slider-->
<section class="slider slick-nav-outside-edge slider-for" data-slick-options='{
  "arrows": true,
  "dots": false,
  "infinite": true,
  "slidesToShow": 1,
  "slidesToScroll": 1,
  "asNavFor": ".slider-nav"
}'>
  <div>
    <img src="https://fakeimg.pl/500x200?text=1">
  </div>
  <div>
    <img src="https://fakeimg.pl/500x200?text=2">
  </div>
</section>

<!--thumbnail slider-->
<section class="slider slick-nav-outside-edge slider-nav slick-thumbnails" data-slick-options='{
  "arrows": false,
  "dots": false,
  "infinite": true,
  "slidesToShow": 4,
  "slidesToScroll": 1,
  "asNavFor": ".slider-for",
  "focusOnSelect": true
}'>
  <div>
    <img src="https://fakeimg.pl/300x300?text=1">
  </div>
  <div>
    <img src="https://fakeimg.pl/300x300?text=2">
  </div>
</section>
<section class="slider" data-slick-options='{
  "dots": true,
  "infinite": false,
  "speed": 300,
  "slidesToShow": 4,
  "slidesToScroll": 4,
  "responsive": [
    {
      "breakpoint": 992,
      "settings": {
        "slidesToShow": 3,
        "slidesToScroll": 3,
        "infinite": true,
        "dots": true
      }
    },
    {
      "breakpoint": 768,
      "settings": {
        "slidesToShow": 2,
        "slidesToScroll": 2
      }
    },
    {
      "breakpoint": 480,
      "settings": {
        "slidesToShow": 1,
        "slidesToScroll": 1
      }
    }
  ]
}'>
  <div>
    <img src="https://fakeimg.pl/350x300?text=1">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=2">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=3">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=4">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=5">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=6">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=7">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=8">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=9">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=10">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=11">
  </div>
  <div>
    <img src="https://fakeimg.pl/350x300?text=12">
  </div>
</section>

Default Navigation

Outside Edge Navigation

Simply add .slick-nav-outside-edge to the section tag of the slider.

  <section class="regular slider slick-nav-outside-edge" data-slick-options='...'>

Outside Navigation

Simply add .slick-nav-outside to the section tag of the slider.

  <section class="regular slider slick-nav-outside" data-slick-options='...'>

Edge Overlap Navigation

Simply add .slick-nav-edge-overlap to the section tag of the slider.

  <section class="regular slider slick-edge-overlap" data-slick-options='...'>

Collapse collapse.js

Flexible plugin that utilizes a handful of classes for easy toggle behavior.

Plugin dependency

Collapse requires the transitions plugin to be included in your version of Bootstrap.

Example

Click the buttons below to show and hide another element via class changes:

  • .collapse hides content
  • .collapsing is applied during transitions
  • .collapse.in shows content

You can use a link with the href attribute, or a button with the data-target attribute. In both cases, the data-toggle="collapse" is required.

Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident.
<a class="btn btn-primary" role="button" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
  Link with href
</a>
<button class="btn btn-primary" type="button" data-toggle="collapse" data-target="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
  Button with data-target
</button>
<div class="collapse" id="collapseExample">
  <div class="well">
    ...
  </div>
</div>

Accordion example

Extend the default collapse behavior to create an accordion with the panel component.

Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.

Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
    <div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
      <div class="panel panel-accordion active">
        <div class="panel-heading" role="tab" id="headingOne">
          <div class="panel-title">
            <a role="button" data-toggle="collapse" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne"><span>Collapsible Group Item #1</span></a>
          </div>
        </div>
        <div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
          <div class="panel-body">
            <p>Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.</p>
          </div>
          <div class="panel-footer"><a role="button" data-toggle="collapse" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne"><span>collapse</span></a></div>
        </div>
      </div>
      <div class="panel panel-accordion">
        <div class="panel-heading" role="tab" id="headingTwo">
          <div class="panel-title">
            <a class="collapsed" role="button" data-toggle="collapse" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo"><span>Collapsible Group Item #2</span></a>
          </div>
        </div>
        <div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
          <div class="panel-body">
            Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
          </div>
          <div class="panel-footer"><a role="button" data-toggle="collapse" href="#collapseTwo" aria-expanded="true" aria-controls="collapseTwo"><span>collapse</span></a></div>
        </div>
      </div>
      <div class="panel panel-accordion">
        <div class="panel-heading" role="tab" id="headingThree">
          <div class="panel-title">
            <a class="collapsed" role="button" data-toggle="collapse" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree"><span>Collapsible Group Item #3</span></a>
          </div>
        </div>
        <div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
          <div class="panel-body">
            Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.
          </div>
          <div class="panel-footer"><a role="button" data-toggle="collapse" href="#collapseThree" aria-expanded="true" aria-controls="collapseThree"><span>collapse</span></a></div>
        </div>
      </div>
    </div>
$("#loadAccordion").click(function(){
      $("#accordion-frame").html('...add accordion html structure...');
      $(document).accordion();

This preferred behavior will allow none, one, or more panels open at a time. You can also limit the number of active panels to one by using data-parent attribute on any collapse link.

<a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
  Collapsible Group Item #1
</a>

It's also possible to swap out .panel-bodys with .list-groups.

  • Bootply
  • One itmus ac facilin
  • Second eros

Make expand/collapse controls accessible

Be sure to add aria-expanded to the control element. This attribute explicitly defines the current state of the collapsible element to screen readers and similar assistive technologies. If the collapsible element is closed by default, it should have a value of aria-expanded="false". If you've set the collapsible element to be open by default using the in class, set aria-expanded="true" on the control instead. The plugin will automatically toggle this attribute based on whether or not the collapsible element has been opened or closed.

Additionally, if your control element is targeting a single collapsible element – i.e. the data-target attribute is pointing to an id selector – you may add an additional aria-controls attribute to the control element, containing the id of the collapsible element. Modern screen readers and similar assistive technologies make use of this attribute to provide users with additional shortcuts to navigate directly to the collapsible element itself.

Usage

The collapse plugin utilizes a few classes to handle the heavy lifting:

  • .collapse hides the content
  • .collapse.in shows the content
  • .collapsing is added when the transition starts, and removed when it finishes

These classes can be found in component-animations.less.

Via data attributes

Just add data-toggle="collapse" and a data-target to the element to automatically assign control of a collapsible element. The data-target attribute accepts a CSS selector to apply the collapse to. Be sure to add the class collapse to the collapsible element. If you'd like it to default open, add the additional class in.

To add accordion-like group management to a collapsible control, add the data attribute data-parent="#selector". Refer to the demo to see this in action.

Via JavaScript

Enable manually with:

$('.collapse').collapse()

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-parent="".

Name type default description
parent selector false If a selector is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior - this is dependent on the panel class)
toggle boolean true Toggles the collapsible element on invocation

Methods

.collapse(options)

Activates your content as a collapsible element. Accepts an optional options object.

$('#myCollapsible').collapse({
  toggle: false
})

.collapse('toggle')

Toggles a collapsible element to shown or hidden. Returns to the caller before the collapsible element has actually been shown or hidden (i.e. before the shown.bs.collapse or hidden.bs.collapse event occurs).

.collapse('show')

Shows a collapsible element. Returns to the caller before the collapsible element has actually been shown (i.e. before the shown.bs.collapse event occurs).

.collapse('hide')

Hides a collapsible element. Returns to the caller before the collapsible element has actually been hidden (i.e. before the hidden.bs.collapse event occurs).

Events

Bootstrap's collapse class exposes a few events for hooking into collapse functionality.

Event Type Description
show.bs.collapse This event fires immediately when the show instance method is called.
shown.bs.collapse This event is fired when a collapse element has been made visible to the user (will wait for CSS transitions to complete).
hide.bs.collapse This event is fired immediately when the hide method has been called.
hidden.bs.collapse This event is fired when a collapse element has been hidden from the user (will wait for CSS transitions to complete).
$('#myCollapsible').on('hidden.bs.collapse', function () {
  // do something…
})

Constrainer constrainer.js

Add the data attribute data-constrainer-options to any tag with text content to automatically limit the text by character or word of the element.

Option Values Notes
word-count Number (integer) Truncates the textual content after the specified number of words.
char-count Number (integer) Truncates the textual content after the specified number of characters.
moreText Text Replaces the default "..." that displays when any truncation occurs. Also replaces the default "(see more)" link that displays when the expandable option is true and the truncated content is visible.
lessText Text Replaces the default "(see less)" link that displays when the expandable option is true and the original content is visible.
showMoreText Boolean (true is default) If set to false, this option removes the default "..." that displays when any truncation occurs.
moreTextBefore Text or HTML Mark-up Adds the value before moreText. This may be helpful in customizing the moreText mark-up, such as adding a link by opening an anchor tag.
moreTextAfter Text or HTML Mark-up Adds the value after moreText. This may be helpful in customizing the moreText mark-up, such as adding a link by closing an anchor tag opened by moreTextBefore.
expandable Boolean (false is default) If set to true, this option adds a "(see more)" link after the truncated content that when clicked shows the original content with a "(see less)" link to return to the truncated content.

Examples

Word Limit

Limits the text to 9 words, ignoring extra spaces in the mark-up and any HTML tags and/or escape characters.

data-constrainer-options='{
  "word-count": 9
}'

One two three four <p>five six seven</p> eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

<p data-constrainer-options='{ "word-count": 9 }'>        <img src="images/9-to-6.gif">One    two <i>three</i> four &lt;p&gt;five six seven&lt;/p&gt; eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>

Character Limit

Limits the text to 19 characters (including spaces between words), ignoring extra spaces and any HTML tags and/or escape characters.

data-constrainer-options='{
  "char-count": 19
}'

One two three four <p>five six seven</p> eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

<p data-constrainer-options='{ "char-count": 19 }'>        <img src="https://fakeimg.pl/150x75?text=image">One    two <i>three</i> four &lt;p&gt;five six seven&lt;/p&gt; eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>

Custom moreText

Sets the moreText value to a custom text value (e.g., " (more)").

data-constrainer-options='{
  "char-count": 25,
  "moreText": " (more)"
}'

One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

<p data-constrainer-options='{ "char-count": 25, "moreText": " (more)" }'>One two <em><i>three</i></em> four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>

Custom Wrapper for moreText

Sets the 'moreTextBefore' and 'moreTextAfter' values to create a custom design and link.

data-constrainer-options='{
  "char-count": 11,
  "moreText": " Read More",
  "moreTextBefore": "<p class=\"text-right margin-bottom-none\"><a href=\"http://www.google.com\">",
  "moreTextAfter": "</a></p>"
}'

One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

<p data-constrainer-options='{ "char-count": 11, "moreText": " Read More", "moreTextBefore": "<p class=\"text-right margin-bottom-none\"><a href=\"http://www.google.com\">", "moreTextAfter": "</a></p>" }'>One two <em><i>three</i></em> four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>

Expandable

Creates a toggable link to switch back and forth between truncated and original content. The default inline textual links are "(see more)" and "(see less)." They can be customized, if necessary.

data-constrainer-options='{
  "char-count": 24,
  "expandable": "true"
}'

One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven

<p data-constrainer-options='{ "char-count": 24, "expandable": "true" }'>One two <em><i>three</i></em> four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven <a href="28.html">twenty-eight</a> twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven</p>

Data Action data-action.js

Add the data attribute data-action-options to any tag to automatically add a click behavior for adding a class, removing a class, showing or hiding, toggling a targeted element. The behavior can also redirect to another page.

Option Values Notes
handler
  • click default
  • hover
Optional
type
  • hide
  • show
  • addclass
  • removeclass
  • redirect
  • toggle
  • panelOpen
  • panelClose
  • panelToggle
Required
target May be a class or id with '.' or '#' prefix, tag, or combination Required
targetLocation
  • self default
  • closestParent
Optional
targetParent May be a class or id with '.' or '#' prefix, tag, or combination Required for targetLocation
class May be a class or id with '.' or '#' prefix, tag, or combination Required for addclass or removeclass. Optional for toggle
url May be a relative or absolute link Required for redirect
toggleOption
  • showhide default
  • custom
Use custom to specify a custom class

Examples

Add or Remove a class on click

The click handler is the default and does not need to be specified in the options.

Note that you will need to click the appropriate button to remove the class after adding it; otherwise, it will remain added.

Add a class

Remove a class

<div class="col-xs-4">
  <div class="clearfix">
      <div class="swatch border-all addremove-bg-class-click-example">
          <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
          <span></span>
      </div>
  </div>
</div>
<div class="col-xs-4">
  <h4 class="margin-top-none">Add a class</h4>
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "type": "addclass", "class": "bg-b1", "target": ".addremove-bg-class-click-example" }'>bg-b1</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "addclass", "class": "bg-b2", "target": ".addremove-bg-class-click-example" }'>bg-b2</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "addclass", "class": "bg-b3", "target": ".addremove-bg-class-click-example" }'>bg-b3</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "addclass", "class": "bg-b4", "target": ".addremove-bg-class-click-example" }'>bg-b4</button>
  </div>
</div>
<div class="col-xs-4">
  <h4 class="margin-top-none">Remove a class</h4>
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "type": "removeclass", "class": "bg-b1", "target": ".addremove-bg-class-click-example" }'>bg-b1</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "removeclass", "class": "bg-b2", "target": ".addremove-bg-class-click-example" }'>bg-b2</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "removeclass", "class": "bg-b3", "target": ".addremove-bg-class-click-example" }'>bg-b3</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "removeclass", "class": "bg-b4", "target": ".addremove-bg-class-click-example" }'>bg-b4</button>
  </div>
</div>

Add or Remove a class on hover

The hover handler must be specified in the options with "handler": "hover".

Note that the addclass option adds a class upon mouseenter and removes the class upon mouseleave. The removeclass option is the reverse: it removes the class upon mouseenter and adds the class upon mouseleave. This removeclass behavior can result in a lot of additional classes being applied to the target, so it is advised to use it only on items that already have the class applied beforehand.

Add a class

Remove a class

Remove a class already applied

<div class="row margin-bottom-4">
  <div class="col-xs-4">
    <div class="clearfix">
        <div class="swatch border-all addremove-bg-class-hover-example">
            <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
            <span></span>
        </div>
    </div>
  </div>
  <div class="col-xs-4">
    <h4 class="margin-top-none">Add a class</h4>
    <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "addclass", "class": "bg-b1", "target": ".addremove-bg-class-hover-example" }'>bg-b1</button>
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "addclass", "class": "bg-b2", "target": ".addremove-bg-class-hover-example" }'>bg-b2</button>
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "addclass", "class": "bg-b3", "target": ".addremove-bg-class-hover-example" }'>bg-b3</button>
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "addclass", "class": "bg-b4", "target": ".addremove-bg-class-hover-example" }'>bg-b4</button>
    </div>
  </div>
  <div class="col-xs-4">
    <h4 class="margin-top-none">Remove a class</h4>
    <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "removeclass", "class": "bg-b1", "target": ".addremove-bg-class-hover-example" }'>bg-b1</button>
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "removeclass", "class": "bg-b2", "target": ".addremove-bg-class-hover-example" }'>bg-b2</button>
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "removeclass", "class": "bg-b3", "target": ".addremove-bg-class-hover-example" }'>bg-b3</button>
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "removeclass", "class": "bg-b4", "target": ".addremove-bg-class-hover-example" }'>bg-b4</button>
    </div>
  </div>
</div>
<div class="row margin-bottom-4">
  <div class="col-xs-4">
    <div class="clearfix">
        <div class="swatch border-all remove-bg-class-hover-example bg-b4">
            <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
            <span></span>
        </div>
    </div>
  </div>
  <div class="col-xs-8">
    <h4 class="margin-top-none">Remove a class already applied</h4>
    <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
      <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "removeclass", "class": "bg-b4", "target": ".remove-bg-class-hover-example" }'>bg-b4</button>
    </div>
  </div>
</div>

Show or hide on a click

The show and hide options use the display: block and display: none inline styles when clicked.

<div class="col-xs-4">
  <div class="clearfix">
      <div class="swatch border-all bg-b4 showhide-box-click-example">
          <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
          <span></span>
      </div>
  </div>
</div>
<div class="col-xs-4">
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "type": "show", "target": ".showhide-box-click-example" }'>Show</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "hide", "target": ".showhide-box-click-example" }'>Hide</button>
  </div>
</div>

Show or hide on hover

<div class="col-xs-4">
  <div class="clearfix">
      <div class="swatch border-all bg-b4 showhide-box-hover-example">
          <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
          <span></span>
      </div>
  </div>
</div>
<div class="col-xs-4">
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "show", "target": ".showhide-box-hover-example" }'>Show</button>
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "hide", "target": ".showhide-box-hover-example" }'>Hide</button>
  </div>
</div>

Toggle class on click

The click handler is the default and does not need to be specified in the options.

Note that you will need to click the appropriate button to remove the class after adding it; otherwise, it will remain added.

Toggle a class

<div class="col-xs-4">
  <div class="clearfix">
      <div class="swatch border-all toggle-class-click-example">
          <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
          <span></span>
      </div>
  </div>
</div>
<div class="col-xs-4">
  <h4 class="margin-top-none">Toggle a class</h4>
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "type": "toggle", "toggleOption": "custom", "class": "bg-b1", "target": ".toggle-class-click-example" }'>bg-b1</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "toggle", "toggleOption": "custom", "class": "bg-b2", "target": ".toggle-class-click-example" }'>bg-b2</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "toggle", "toggleOption": "custom", "class": "bg-b3", "target": ".toggle-class-click-example" }'>bg-b3</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "toggle", "toggleOption": "custom", "class": "bg-b4", "target": ".toggle-class-click-example" }'>bg-b4</button>
  </div>
</div>

Toggle class on hover

Toggle a class

<div class="col-xs-4">
  <div class="clearfix">
      <div class="swatch border-all toggle-class-hover-example">
          <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
          <span></span>
      </div>
  </div>
</div>
<div class="col-xs-4">
  <h4 class="margin-top-none">Toggle a class</h4>
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "toggle", "toggleOption": "custom", "class": "bg-b1", "target": ".toggle-class-hover-example" }'>bg-b1</button>
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "toggle", "toggleOption": "custom", "class": "bg-b2", "target": ".toggle-class-hover-example" }'>bg-b2</button>
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "toggle", "toggleOption": "custom", "class": "bg-b3", "target": ".toggle-class-hover-example" }'>bg-b3</button>
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "toggle", "toggleOption": "custom", "class": "bg-b4", "target": ".toggle-class-hover-example" }'>bg-b4</button>
  </div>
</div>

Redirect to a page

Adding "type": "redirect" and "url": "[page address]" will enable an element to redirect to the specified URL once someone has clicked on the element.

The hover handler may also be used here, but it has been removed from the examples below to prevent accidental navigation to another page when moving your mouse over the page.

Redirect on click

<div class="col-xs-6">
  <h4 class="margin-top-none">Redirect on click</h4>
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "type": "redirect", "url": "//www.lexmark.com" }'>Lexmark.com</button>
    <button type="button" class="btn btn-default" data-action-options='{ "type": "redirect", "url": "//www.google.com" }'>Google.com</button>
  </div>
</div>
<div class="col-xs-6">
  <h4 class="margin-top-none">Redirect on hover</h4>
  <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "redirect", "url": "//www.lexmark.com" }'>Lexmark.com</button>
    <button type="button" class="btn btn-default" data-action-options='{ "handler": "hover", "type": "redirect", "url": "//www.google.com" }'>Google.com</button>
  </div>
</div>

Adding a class to a target up the DOM

Using the options "targetLocation": "closestParent" and "targetParent": ".parentClassOrId", you can add a class further up the DOM from your target. This is helpful if the item in the DOM does not have a specific class or id to target.

Toggle a class

<div class="row margin-bottom-4">
  <div class="col-xs-4">
    <div class="clearfix">
      <div class="swatch border-all bg-b3" id="bg-b3-box">
        <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
        <span></span>
      </div>
    </div>
  </div>
  <div class="col-xs-4">
    <div class="clearfix">
      <div class="swatch border-all bg-b4" id="bg-b4-box">
        <div class="padding-top-4 text-center"><a href="#">Sample Link</a></div>
        <span></span>
      </div>
    </div>
  </div>
</div>
<div class="row margin-bottom-4">
  <div class="col-xs-12">
    <h4 class="margin-top-none">Toggle a class</h4>
    <div class="btn-group-vertical" role="group" aria-label="Vertical background color button group">
      <button type="button" class="btn btn-default" data-action-options='{ "type": "toggle", "target": "#bg-b3-box", "targetLocation": "closestParent", "targetParent": ".row" }'>Toggle Row</button>
    </div>
  </div>
</div>

Opening, closing, and toggling accordion panels

But Théoden was not utterly forsaken. The knights of his house lay slain about him, or else mastered by the madness of their steeds were borne far away. Yet one stood there still: Dernhelm the young, faithful beyond fear; and he wept, for he had loved his lord as a father. Right through the charge Merry had been borne unharmed behind him, until the Shadow came; and then Windfola had thrown them in his terror, and now ran wild upon the plain. Merry crawled on all fours like a dazed beast, and such a horror was on him that he was blind and sick.

'King's man! King's man!' his heart cried within him. 'You must stay by him. As a father you shall be to me, you said.' But his will made no answer, and his body shook. He dared not open his eyes or look up.

Then out of the blackness in his mind he thought that he heard Dernhelm speaking; yet now the voice seemed strange, recalling some other voice that he had known.

'Begone, foul dwimmerlaik, lord of carrion! Leave the dead in peace!'

A cold voice answered: 'Come not between the Nazgyl and his prey! Or he will not slay thee in thy turn. He will bear thee away to the houses of lamentation, beyond all darkness, where thy flesh shall be devoured, and thy shrivelled mind be left naked to the Lidless Eye.'

A sword rang as it was drawn. 'Do what you will; but I will hinder it, if I may.'

'Hinder me? Thou fool. No living man may hinder me!'

Then Merry heard of all sounds in that hour the strangest. It seemed that Dernhelm laughed, and the clear voice was like the ring of steel. 'But no living man am I! You look upon a woman. Éowyn I am, Éomund's daughter.

You stand between me and my lord and kin. Begone, if you be not deathless! For living or dark undead, I will smite you, if you touch him.'

The winged creature screamed at her, but the Ringwraith made no answer, and was silent, as if in sudden doubt. Very amazement for a moment conquered Merry's fear. He opened his eyes and the blackness was lifted from them. There some paces from him sat the great beast, and all seemed dark about it, and above it loomed the Nazgyl Lord like a shadow of despair. A little to the left facing them stood she whom he had called Dernhelm. But the helm of her secrecy, had fallen from her, and her bright hair, released from its bonds, gleamed with pale gold upon her shoulders. Her eyes grey as the sea were hard and fell, and yet tears were on her cheek. A sword was in her hand, and she raised her shield against the horror of her enemy's eyes.

Éowyn it was, and Dernhelm also. For into Merry's mind flashed the memory of the face that he saw at the riding from Dunharrow: the face of one that goes seeking death, having no hope. Pity filled his heart and great wonder, and suddenly the slow-kindled courage of his race awoke. He clenched his hand. She should not die, so fair, so desperate At least she should not die alone, unaided.

The face of their enemy was not turned towards him, but still he hardly dared to move, dreading lest the deadly eyes should fall on him. Slowly, slowly he began to crawl aside; but the Black Captain, in doubt and malice intent upon the woman before him, heeded him no more than a worm in the mud.

Suddenly the great beast beat its hideous wings, and the wind of them was foul. Again it leaped into the air, and then swiftly fell down upon Éowyn, shrieking, striking with beak and claw.

Still she did not blench: maiden of the Rohirrim, child of kings, slender but as a steel-blade, fair but terrible. A swift stroke she dealt, skilled and deadly. The outstretched neck she clove asunder, and the hewn head fell like a stone. Backward she sprang as the huge shape crashed to ruin, vast wings outspread, crumpled on the earth; and with its fall the shadow passed away. A light fell about her, and her hair shone in the sunrise.

Out of the wreck rose the Black Rider, tall and threatening, towering above her. With a cry of hatred that stung the very ears like venom he let fall his mace. Her shield was shivered in many pieces, and her arm was broken; she stumbled to her knees. He bent over her like a cloud, and his eyes glittered; he raised his mace to kill.

<div class="col-xs-6 margin-bottom-4">
  <h4 class="margin-top-none">Click Examples</h4>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-accordion-part1" }'>Open Part 1</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "closePanel", "target": "#data-action-accordion-part1" }'>Close Part 1</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-accordion-part2" }'>Open Part 2</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-accordion-part3" }'>Open Part 3</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "togglePanel", "target": "#data-action-accordion-part4" }'>Toggle Part 4</a>
  </div>
</div>
<div class="col-xs-6 margin-bottom-4">
  <h4 class="margin-top-none">Hover Examples</h4>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-accordion-part1" }'>Open Part 1</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "closePanel", "target": "#data-action-accordion-part1" }'>Close Part 1</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-accordion-part2" }'>Open Part 2</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-accordion-part3" }'>Open Part 3</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "togglePanel", "target": "#data-action-accordion-part4" }'>Toggle Part 4</a>
  </div>
</div>

Opening tab panels

Close and Toggle methods do not work for tabs because one tab cannot be closed or toggled unless another one is opened.

But Théoden was not utterly forsaken. The knights of his house lay slain about him, or else mastered by the madness of their steeds were borne far away. Yet one stood there still: Dernhelm the young, faithful beyond fear; and he wept, for he had loved his lord as a father. Right through the charge Merry had been borne unharmed behind him, until the Shadow came; and then Windfola had thrown them in his terror, and now ran wild upon the plain. Merry crawled on all fours like a dazed beast, and such a horror was on him that he was blind and sick.

'King's man! King's man!' his heart cried within him. 'You must stay by him. As a father you shall be to me, you said.' But his will made no answer, and his body shook. He dared not open his eyes or look up.

Then out of the blackness in his mind he thought that he heard Dernhelm speaking; yet now the voice seemed strange, recalling some other voice that he had known.

'Begone, foul dwimmerlaik, lord of carrion! Leave the dead in peace!'

A cold voice answered: 'Come not between the Nazgyl and his prey! Or he will not slay thee in thy turn. He will bear thee away to the houses of lamentation, beyond all darkness, where thy flesh shall be devoured, and thy shrivelled mind be left naked to the Lidless Eye.'

A sword rang as it was drawn. 'Do what you will; but I will hinder it, if I may.'

'Hinder me? Thou fool. No living man may hinder me!'

Then Merry heard of all sounds in that hour the strangest. It seemed that Dernhelm laughed, and the clear voice was like the ring of steel. 'But no living man am I! You look upon a woman. Éowyn I am, Éomund's daughter.

You stand between me and my lord and kin. Begone, if you be not deathless! For living or dark undead, I will smite you, if you touch him.'

The winged creature screamed at her, but the Ringwraith made no answer, and was silent, as if in sudden doubt. Very amazement for a moment conquered Merry's fear. He opened his eyes and the blackness was lifted from them. There some paces from him sat the great beast, and all seemed dark about it, and above it loomed the Nazgyl Lord like a shadow of despair. A little to the left facing them stood she whom he had called Dernhelm. But the helm of her secrecy, had fallen from her, and her bright hair, released from its bonds, gleamed with pale gold upon her shoulders. Her eyes grey as the sea were hard and fell, and yet tears were on her cheek. A sword was in her hand, and she raised her shield against the horror of her enemy's eyes.

Éowyn it was, and Dernhelm also. For into Merry's mind flashed the memory of the face that he saw at the riding from Dunharrow: the face of one that goes seeking death, having no hope. Pity filled his heart and great wonder, and suddenly the slow-kindled courage of his race awoke. He clenched his hand. She should not die, so fair, so desperate At least she should not die alone, unaided.

The face of their enemy was not turned towards him, but still he hardly dared to move, dreading lest the deadly eyes should fall on him. Slowly, slowly he began to crawl aside; but the Black Captain, in doubt and malice intent upon the woman before him, heeded him no more than a worm in the mud.

Suddenly the great beast beat its hideous wings, and the wind of them was foul. Again it leaped into the air, and then swiftly fell down upon Éowyn, shrieking, striking with beak and claw.

Still she did not blench: maiden of the Rohirrim, child of kings, slender but as a steel-blade, fair but terrible. A swift stroke she dealt, skilled and deadly. The outstretched neck she clove asunder, and the hewn head fell like a stone. Backward she sprang as the huge shape crashed to ruin, vast wings outspread, crumpled on the earth; and with its fall the shadow passed away. A light fell about her, and her hair shone in the sunrise.

Out of the wreck rose the Black Rider, tall and threatening, towering above her. With a cry of hatred that stung the very ears like venom he let fall his mace. Her shield was shivered in many pieces, and her arm was broken; she stumbled to her knees. He bent over her like a cloud, and his eyes glittered; he raised his mace to kill.

<div class="col-xs-6 margin-bottom-4">
  <h4 class="margin-top-none">Click Examples</h4>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-tab-part1" }'>Open Part 1</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-tab-part2" }'>Open Part 2</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-tab-part3" }'>Open Part 3</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "type": "openPanel", "target": "#data-action-tab-part4" }'>Open Part 4</a>
  </div>
</div>
<div class="col-xs-6 margin-bottom-4">
  <h4 class="margin-top-none">Hover Examples</h4>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-tab-part1" }'>Open Part 1</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-tab-part2" }'>Open Part 2</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-tab-part3" }'>Open Part 3</a>
  </div>
  <div>
    <a href="#" data-action-options='{ "handler": "hover", "type": "openPanel", "target": "#data-action-tab-part4" }'>Open Part 4</a>
  </div>
</div>

Tables with DataTables datatables.js

Settings for a table may be passed through the 'data-datatables-options' data attribute as an object. For help with how to write the syntax of data attribute options, go to Syntax for Data Attribute Options. Options that may be passed are found in DataTables' documentation.

Default Settings

Examples

Standard

Custom

Buttons

Column Filters

Pagination

DataTables with Cards

We can combine DataTables functionality with Table Card layout

Icon Name
Linux
OSX
Windows
Twitter
Facebook
Google+
<table class="table table-cards" data-datatables-options='{
    "searching": true
  }'>
  <thead>
    ...
  </thead>
  <tbody data-evenheight-options='{"customClass":">tr"}'>
    ...
  </tbody>
</table>

DataTable Header Filtering

DataTables can be setup to filter specifically by column. Add .inline-header-filters to the table and the initComplete: function to the dataTable options javascript.

Filename Product Type
SU_B2236-MB2236_Front_ISO_Imaging-Unit-Return.tiff Supply
SU_B2236-MB2236_Front_ISO_Toner-Cartridge.tiff Supply
PR_C3224dw-CS331dw-C3326dw_Front_ISO.tiff Printer
PR_C3224dw-CS331dw-C3326dw_Left_ISO.tiff Printer
<table id="two-row-header-demo" class="table table-condensed table-bordered table-hover text-small inline-header-filters" summary="This is a summary of what this table contains and does" role="grid" aria-labelledby="two-row-header-demo-grid">
  ...
</table>

<!-- Example Javascript for Datatable column filter
$('#two-row-header-demo').DataTable({
  "dom": "t",
  "order": [1, 'asc'],
  "columnDefs": [
    {"width": "15%", "orderable": false, "targets": 0}
  ],
  "orderCellsTop": true,
  initComplete: function (settings, json) {
    const api = this.api();
    // that.statuses = api.column(5).data().unique().toArray();
    // that.prodTypes = api.column(6).data().unique().toArray();
    api.columns().every(function () {
      const column = this;
      const $head = $(column.header());
      const inputContainer = $head.parent().next().children().get($head.index());
      $(':input', inputContainer).val('').off('keyup change').on('keyup change', function (e) {
        const $this = $(this);
        const value = $this.val();
        if (column.search() !== value) {
          if ($this.is('select') && (value !== '')) {
            column.search('\\b' + $.fn.dataTable.util.escapeRegex(value) + '\\b', true, false).draw();
          } else {
            column.search(value).draw();
          }
        }
      });
    });
  }
});-->

DataTable DOM Options

DataTables have a set of options that can control the table and show more information about the contents of the table. These options can be shown or hidden. The order in which the letters are written around the 't' determines whether the options are shown above or below the table. For further documentation about DOM rules: https://datatables.net/reference/option/dom.

Name Other Names Titles
Bilbo Baggins Mr. Lucky Number, Bilbo the Magnificent, Bilba Labingi Burglar, Thief, Clue-finder, Web-cutter, Stinging Fly, Ringwinner, Luckwearer, Child of the Kindly West, Barrel-rider, Elf-friend, Mad Baggins, Ring-bearer
Merriadoc Brandybuck Merry, "the Magnificent", Kalimac Brandagamba Master of Buckland
Gandalf Olórin, Mithrandir, Incánus, Tharkûn, The White Rider, Greyhame, Stormcrow, Old Grey Beard, Big Grey Beard, The White Pilgrim, Láthspell The Grey, The White
Frodo Baggins Mr. Underhill, The Halfling, Frodo of the Nine Fingers, Iorhael, Maura Labingi Ring-bearer, Elf-friend, Master, Deputy Mayor of Michel Delving, Daur
Peregrin Took Pippin, Fool of a Took, Ernil i Pheriannath, Thain Peregrin I, Razanur Tûk Thain, Knight of Gondor, Guard of the Citadel, Counsellor of the North-kingdom
Bilbo Baggins Mr. Lucky Number, Bilbo the Magnificent, Bilba Labingi Burglar, Thief, Clue-finder, Web-cutter, Stinging Fly, Ringwinner, Luckwearer, Child of the Kindly West, Barrel-rider, Elf-friend, Mad Baggins, Ring-bearer
Merriadoc Brandybuck Merry, "the Magnificent", Kalimac Brandagamba Master of Buckland
Gandalf Olórin, Mithrandir, Incánus, Tharkûn, The White Rider, Greyhame, Stormcrow, Old Grey Beard, Big Grey Beard, The White Pilgrim, Láthspell The Grey, The White
Frodo Baggins Mr. Underhill, The Halfling, Frodo of the Nine Fingers, Iorhael, Maura Labingi Ring-bearer, Elf-friend, Master, Deputy Mayor of Michel Delving, Daur
Peregrin Took Pippin, Fool of a Took, Ernil i Pheriannath, Thain Peregrin I, Razanur Tûk Thain, Knight of Gondor, Guard of the Citadel, Counsellor of the North-kingdom
<!--TO USE CUSTOM 'INPUT' PAGINATION STYLE-->
<table class="table" data-datatables-options='{
  "dom": "ptp",
  "paging": true,
  "pageLength": 4,
  "pagingType": "input",
  "searching": true
}'>
    ...
</table>

<!--TO SHOW ONLY ARROWS ON PAGINATION-->
<table class="table" data-datatables-options='{
  "dom": "ptp",
  "paging": true,
  "pageLength": 4,
  "searching": true
}'>
    ...
</table>

<!--TO SHOW WORDS PREVIOUS/NEXT ON PAGINATION-->
<table class="table" data-datatables-options='{
  "dom": "ptp",
  "paging": true,
  "pageLength": 4,
  "searching": true,
  "language": {
    "paginate": {
      "previous": "Previous",
      "next": "Next"
    }
  }
}'>
    ...
</table>

<!--TO SHOW ROW COUNT-->
<table class="table" data-datatables-options='{
  "dom": "iti",
  "info": true
  }
}'>
    ...
</table>

Dropdowns dropdown.js

Add dropdown menus to nearly anything with this simple plugin, including the navbar, tabs, and pills.

Within a navbar

Within pills

Via data attributes or JavaScript, the dropdown plugin toggles hidden content (dropdown menus) by toggling the .open class on the parent list item.

On mobile devices, opening a dropdown adds a .dropdown-backdrop as a tap area for closing dropdown menus when tapping outside the menu, a requirement for proper iOS support. This means that switching from an open dropdown menu to a different dropdown menu requires an extra tap on mobile.

Note: The data-toggle="dropdown" attribute is relied on for closing dropdown menus at an application level, so it's a good idea to always use it.

Via data attributes

Add data-toggle="dropdown" to a link or button to toggle a dropdown.

<div class="dropdown">
  <button id="dLabel" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
    Dropdown trigger
    <span class="caret"></span>
  </button>
  <ul class="dropdown-menu" aria-labelledby="dLabel">
    ...
  </ul>
</div>

To keep URLs intact with link buttons, use the data-target attribute instead of href="#".

<div class="dropdown">
  <a id="dLabel" data-target="#" href="http://example.com" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">
    Dropdown trigger
    <span class="caret"></span>
  </a>

  <ul class="dropdown-menu" aria-labelledby="dLabel">
    ...
  </ul>
</div>

Via JavaScript

Call the dropdowns via JavaScript:

$('.dropdown-toggle').dropdown()

data-toggle="dropdown" still required

Regardless of whether you call your dropdown via JavaScript or instead use the data-api, data-toggle="dropdown" is always required to be present on the dropdown's trigger element.

None

$().dropdown('toggle')

Toggles the dropdown menu of a given navbar or tabbed navigation.

All dropdown events are fired at the .dropdown-menu's parent element.

All dropdown events have a relatedTarget property, whose value is the toggling anchor element.

Event Type Description
show.bs.dropdown This event fires immediately when the show instance method is called.
shown.bs.dropdown This event is fired when the dropdown has been made visible to the user (will wait for CSS transitions, to complete).
hide.bs.dropdown This event is fired immediately when the hide instance method has been called.
hidden.bs.dropdown This event is fired when the dropdown has finished being hidden from the user (will wait for CSS transitions, to complete).
$('#myDropdown').on('show.bs.dropdown', function () {
  // do something…
})

EvenHeight evenheight.js

Add the data attribute data-evenheight-options to any parent tag to automatically set the height of all immediate children tags to the height of the tallest child.

Add a custom class to the data attribute data-evenheight-options of a parent container to automatically set the height of all tags within the container to the tallest element assigned with the class.

Custom Class Example

Title

One two three four five six seven eight nine ten eleven twelve thirteen

Title

One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

<div class="row" data-evenheight-options='{"customClass": ".well"}'>
  <div class="col-xs-12 col-sm-6">
    <div class="well no-shadow">
      <h2 class="text-center">Title</h2>
      <p>One two three four five six seven eight nine ten eleven twelve thirteen</p>
    </div>
  </div>
  <div class="col-xs-12 col-sm-6">
    <div class="well no-shadow">
      <h2 class="text-center">Title</h2>
      <p>One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>
    </div>
  </div>
</div>

Modals modal.js

Modals are streamlined, but flexible, dialog prompts with the minimum required functionality and smart defaults.

Multiple open modals not supported

Be sure not to open a modal while another is still visible. Showing more than one modal at a time requires custom code.

Modal markup placement

Always try to place a modal's HTML code in a top-level position in your document to avoid other components affecting the modal's appearance and/or functionality.

Mobile device caveats

There are some caveats regarding using modals on mobile devices. See our browser support docs for details.

Due to how HTML5 defines its semantics, the autofocus HTML attribute has no effect in Bootstrap modals. To achieve the same effect, use some custom JavaScript:

$('#myModal').on('shown.bs.modal', function () {
  $('#myInput').focus()
})

Examples

Modal Headers

As a general rule of thumb, keep the modal header generic. i.e. Delete, Edit, Save. The patterns within LPMD differ slightly when you are working within a single product view at one time, and then you may use specific product names within the modal header i.e. Edit CX725de.

Informational modal

This type of modal is used when there is only a need to inform the user that something is happening or allow them to compare two different types of data simultaneously. If using the modal for comparative data, it is okay to reposition the modal to the left or right instead of the center. No actions are associated with this type of modal.

<div class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title">Title of Modal</h4>
      </div>
      <div class="modal-body">
        <p>Informational or comparative content goes here.</p>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

Error alert modal

This type of modal is used when there is an error and requires the users attention.

<div class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header error-modal">
        <h4 class="modal-title">Cannot save data with errors</h4>
      </div>
      <div class="modal-body">
        <p>Your changes have not been saved because of the following:
          <ul>
            <li>Long name is required</li>
            <li>Model number is required</li>
          </ul>
        </p>
        <button class="btn btn-default margin-bottom-1">Okay</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

Warning alert modal

This type of modal is used when there is important information associated with a previous action or event. Option to switch out the single button with the cancel/proceed .modal-footer markup.

<div class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header warning-modal">
        <h4 class="modal-title">Important order information</h4>
      </div>
      <div class="modal-body">
        <p class="margin-bottom-2">The changes to your account will affect all open orders.</p>
        <button class="btn btn-default margin-bottom-1">Okay</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

Modal with submittable actions

This type of modal is used when the modal contains data that can be submitted. This does not include login or 401 interactions.

<div class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header bg-n1">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title">Edit MX510de</h4>
      </div>
      <div class="modal-body">
        <form>
          <div class="form-group">
            <label for="disabledPID">PID</label>
            <input type="text" id="disabledPID" class="form-control" placeholder="1234" disabled>
          </div>
          <div class="form-group required">
            <label for="productType">Product Type</label>
            <select class="form-control" id="productType">
              ...
            </select>
          </div>
          <div class="form-group required">
            <label for="productLongName">Long Name</label>
            <input type="text" id="productLongName" class="form-control" placeholder="MX510de">
          </div>
        </form>
      </div>
      <div class="modal-footer">
        <button class="btn btn-link btn-xs" type="button">Cancel</button>
        <button class="btn btn-info btn-xs" type="button">Edit Product</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

Modal for login requirements

This type of modal is used for 401 interactions.

<div class="modal fade" tabindex="-1" role="dialog">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-body">
        <h2 class="margin-top-1">Your login has expired.</h2>
        <p>Don't worry! We've saved your place, so you only need to log back in to continue where you left off.</p>
        <form>
          <div class="form-group required">
            <label for="userName401">Username</label>
            <input type="text" id="userName401" class="form-control">
          </div>
          <div class="form-group required">
            <label for="userPassword401">Password</label>
            <input type="text" id="userPassword401" class="form-control">
          </div>
        </form>
        <button class="btn btn-primary btn-block">Log in</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

Live demo

Toggle a modal via JavaScript by clicking the button below. It will slide down and fade in from the top of the page.

<!-- Button trigger modal -->
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">
  Launch demo modal
</button>

<!-- Modal -->
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="myModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        ...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div>
  </div>
</div>

Make modals accessible

Be sure to add role="dialog" and aria-labelledby="...", referencing the modal title, to .modal, and role="document" to the .modal-dialog itself.

Additionally, you may give a description of your modal dialog with aria-describedby on .modal.

Embedding videos

Embedding videos in modals requires additional JavaScript not in Bootstrap to automatically start/stop playback. Below are examples in both jwplayer and YouTube. For YouTube, be sure to add enablejsapi=1 to the iframe embed URL.

Launch jwplayer Modal

Launch YouTube Modal

    jwplayer.key="YOUR_KEY_HERE";
    jwplayer("mediaplayer-example").setup({
        allowscriptaccess: 'always',
        width: '100%',
        aspectratio: '16:9',
        file: 'http://media.lexmark.com/www/video/lexmark-healthcare-full-story-tier1.mp4',
        sharing: 'false'
    });
    $('#modal-jwplayer').on('show.bs.modal', function(e) {
        jwplayer('mediaplayer-example').play();
    });
    $('#modal-jwplayer').on('hide.bs.modal', function(e) {
        jwplayer('mediaplayer-example').pause(true);
    });

    var tag = document.createElement('script');
    tag.id = 'iframe-demo';
    tag.src = 'https://www.youtube.com/iframe_api';
    var firstScriptTag = document.getElementsByTagName('script')[0];
    firstScriptTag.parentNode.insertBefore(tag, firstScriptTag);

    var player;
    function onYouTubeIframeAPIReady() {
        player = new YT.Player('youtube-example', {});

        $('#modal-youtube').on('show.bs.modal', function(e) {
            player.playVideo();
        });

        $('#modal-youtube').on('hide.bs.modal', function(e) {
            player.pauseVideo();
        });
    };

Optional sizes

Modals have three optional sizes, available via modifier classes to be placed on a .modal-dialog.

<!-- Large modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-lg">Large modal</button>

<div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel">
  <div class="modal-dialog modal-lg" role="document">
    <div class="modal-content">
      ...
    </div>
  </div>
</div>

<!-- Small modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-sm">Small modal</button>

<div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="mySmallModalLabel">
  <div class="modal-dialog modal-sm" role="document">
    <div class="modal-content">
      ...
    </div>
  </div>
</div>

<!-- Fluid modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target=".bs-example-modal-fluid">Fluid modal</button>

<div class="modal fade bs-example-modal-fluid" tabindex="-1" role="dialog" aria-labelledby="myFluidModalLabel">
  <div class="modal-dialog modal-fluid" role="document">
    <div class="modal-content">
      ...
    </div>
  </div>
</div>

Remove animation

For modals that simply appear rather than fade in to view, remove the .fade class from your modal markup.

<div class="modal" tabindex="-1" role="dialog" aria-labelledby="...">
  ...
</div>

Using the grid system

To take advantage of the Bootstrap grid system within a modal, just nest .rows within the .modal-body and then use the normal grid system classes.

<div class="modal fade" tabindex="-1" role="dialog" aria-labelledby="gridSystemModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="gridSystemModalLabel">Modal title</h4>
      </div>
      <div class="modal-body">
        <div class="row">
          <div class="col-md-4">.col-md-4</div>
          <div class="col-md-4 col-md-offset-4">.col-md-4 .col-md-offset-4</div>
        </div>
        <div class="row">
          <div class="col-md-3 col-md-offset-3">.col-md-3 .col-md-offset-3</div>
          <div class="col-md-2 col-md-offset-4">.col-md-2 .col-md-offset-4</div>
        </div>
        <div class="row">
          <div class="col-md-6 col-md-offset-3">.col-md-6 .col-md-offset-3</div>
        </div>
        <div class="row">
          <div class="col-sm-9">
            Level 1: .col-sm-9
            <div class="row">
              <div class="col-xs-8 col-sm-6">
                Level 2: .col-xs-8 .col-sm-6
              </div>
              <div class="col-xs-4 col-sm-6">
                Level 2: .col-xs-4 .col-sm-6
              </div>
            </div>
          </div>
        </div>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Save changes</button>
      </div>
    </div><!-- /.modal-content -->
  </div><!-- /.modal-dialog -->
</div><!-- /.modal -->

Have a bunch of buttons that all trigger the same modal, just with slightly different contents? Use event.relatedTarget and HTML data-* attributes (possibly via jQuery) to vary the contents of the modal depending on which button was clicked. See the Modal Events docs for details on relatedTarget,

...more buttons...
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Open modal for @mdo</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@fat">Open modal for @fat</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@getbootstrap">Open modal for @getbootstrap</button>
...more buttons...

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="exampleModalLabel">New message</h4>
      </div>
      <div class="modal-body">
        <form>
          <div class="form-group">
            <label for="recipient-name" class="control-label">Recipient:</label>
            <input type="text" class="form-control" id="recipient-name">
          </div>
          <div class="form-group">
            <label for="message-text" class="control-label">Message:</label>
            <textarea class="form-control" id="message-text"></textarea>
          </div>
        </form>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Send message</button>
      </div>
    </div>
  </div>
</div>
$('#exampleModal').on('show.bs.modal', function (event) {
  var button = $(event.relatedTarget) // Button that triggered the modal
  var recipient = button.data('whatever') // Extract info from data-* attributes
  // If necessary, you could initiate an AJAX request here (and then do the updating in a callback).
  // Update the modal's content. We'll use jQuery here, but you could use a data binding library or other methods instead.
  var modal = $(this)
  modal.find('.modal-title').text('New message to ' + recipient)
  modal.find('.modal-body input').val(recipient)
})

Usage

The modal plugin toggles your hidden content on demand, via data attributes or JavaScript. It also adds .modal-open to the <body> to override default scrolling behavior and generates a .modal-backdrop to provide a click area for dismissing shown modals when clicking outside the modal.

Via data attributes

Activate a modal without writing JavaScript. Set data-toggle="modal" on a controller element, like a button, along with a data-target="#foo" or href="#foo" to target a specific modal to toggle.

<button type="button" data-toggle="modal" data-target="#myModal">Launch modal</button>

Via JavaScript

Call a modal with id myModal with a single line of JavaScript:

$('#myModal').modal(options)

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-backdrop="".

Name type default description
backdrop boolean or the string 'static' true Includes a modal-backdrop element. Alternatively, specify static for a backdrop which doesn't close the modal on click.
keyboard boolean true Closes the modal when escape key is pressed
show boolean true Shows the modal when initialized.
remote path false

This option is deprecated since v3.3.0 and has been removed in v4. We recommend instead using client-side templating or a data binding framework, or calling jQuery.load yourself.

If a remote URL is provided, content will be loaded one time via jQuery's load method and injected into the .modal-content div. If you're using the data-api, you may alternatively use the href attribute to specify the remote source. An example of this is shown below:

<a data-toggle="modal" href="remote.html" data-target="#modal">Click me</a>

Methods

.modal(options)

Activates your content as a modal. Accepts an optional options object.

$('#myModal').modal({
  keyboard: false
})

.modal('toggle')

Manually toggles a modal. Returns to the caller before the modal has actually been shown or hidden (i.e. before the shown.bs.modal or hidden.bs.modal event occurs).

$('#myModal').modal('toggle')

.modal('show')

Manually opens a modal. Returns to the caller before the modal has actually been shown (i.e. before the shown.bs.modal event occurs).

$('#myModal').modal('show')

.modal('hide')

Manually hides a modal. Returns to the caller before the modal has actually been hidden (i.e. before the hidden.bs.modal event occurs).

$('#myModal').modal('hide')

.modal('handleUpdate')

Readjusts the modal's positioning to counter a scrollbar in case one should appear, which would make the modal jump to the left.

Only needed when the height of the modal changes while it is open.

$('#myModal').modal('handleUpdate')

Events

Bootstrap's modal class exposes a few events for hooking into modal functionality.

All modal events are fired at the modal itself (i.e. at the <div class="modal">).

Event Type Description
show.bs.modal This event fires immediately when the show instance method is called. If caused by a click, the clicked element is available as the relatedTarget property of the event.
shown.bs.modal This event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete). If caused by a click, the clicked element is available as the relatedTarget property of the event.
hide.bs.modal This event is fired immediately when the hide instance method has been called.
hidden.bs.modal This event is fired when the modal has finished being hidden from the user (will wait for CSS transitions to complete).
loaded.bs.modal This event is fired when the modal has loaded content using the remote option.
$('#myModal').on('hidden.bs.modal', function (e) {
  // do something...
})

Popovers popover.js

Add small overlays of content, like those on the iPad, to any element for housing secondary information.

Popovers whose both title and content are zero-length are never displayed.

Plugin dependency

Popovers require the tooltip plugin to be included in your version of Bootstrap.

Opt-in functionality

For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself.

One way to initialize all popovers on a page would be to select them by their data-toggle attribute:

$(function () {
  $('[data-toggle="popover"]').popover()
})

Popovers in button groups, input groups, and tables require special setting

When using popovers on elements within a .btn-group or an .input-group, or on table-related elements (<td>, <th>, <tr>, <thead>, <tbody>, <tfoot>), you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the popover is triggered).

Don't try to show popovers on hidden elements

Invoking $(...).popover('show') when the target element is display: none; will cause the popover to be incorrectly positioned.

Popovers on disabled elements require wrapper elements

To add a popover to a disabled or .disabled element, put the element inside of a <div> and apply the popover to that <div> instead.

Multiple-line links

Sometimes you want to add a popover to a hyperlink that wraps multiple lines. The default behavior of the popover plugin is to center it horizontally and vertically. Add white-space: nowrap; to your anchors to avoid this.

Examples

Static popover

Four options are available: top, right, bottom, and left aligned.

Popover top

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover right

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover bottom

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Popover left

Sed posuere consectetur est at lobortis. Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum.

Live demo

<button type="button" class="btn btn-lg btn-danger" data-toggle="popover" title="Popover title" data-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>

Four directions

<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="left" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
  Popover on left
</button>

<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="top" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
  Popover on top
</button>

<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="bottom" data-content="Vivamus
sagittis lacus vel augue laoreet rutrum faucibus.">
  Popover on bottom
</button>

<button type="button" class="btn btn-default" data-container="body" data-toggle="popover" data-placement="right" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus.">
  Popover on right
</button>

Dismiss on next click

Use the focus trigger to dismiss popovers on the next click that the user makes.

Specific markup required for dismiss-on-next-click

For proper cross-browser and cross-platform behavior, you must use the <a> tag, not the <button> tag, and you also must include the role="button" and tabindex attributes.

<a tabindex="0" class="btn btn-lg btn-danger" role="button" data-toggle="popover" data-trigger="focus" title="Dismissible popover" data-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>

Usage

Enable popovers via JavaScript:

$('#example').popover(options)

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-animation="".

Note that for security reasons the sanitize, sanitizeFn and whiteList options cannot be supplied using data attributes.

Name Type Default Description
animation boolean true Apply a CSS fade transition to the popover
container string | false false

Appends the popover to a specific element. Example: container: 'body'. This option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize.

content string | function ''

Default content value if data-content attribute isn't present.

If a function is given, it will be called with its this reference set to the element that the popover is attached to.

delay number | object 0

Delay showing and hiding the popover (ms) - does not apply to manual trigger type

If a number is supplied, delay is applied to both hide/show

Object structure is: delay: { "show": 500, "hide": 100 }

html boolean false Insert HTML into the popover. If false, jQuery's text method will be used to insert content into the DOM. Use text if you're worried about XSS attacks.
placement string | function 'right'

How to position the popover - top | bottom | left | right | auto.
When "auto" is specified, it will dynamically reorient the popover. For example, if placement is "auto left", the popover will display to the left when possible, otherwise it will display right.

When a function is used to determine the placement, it is called with the popover DOM node as its first argument and the triggering element DOM node as its second. The this context is set to the popover instance.

selector string false If a selector is provided, popover objects will be delegated to the specified targets. In practice, this is used to enable dynamic HTML content to have popovers added. See this and an informative example.
template string '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'

Base HTML to use when creating the popover.

The popover's title will be injected into the .popover-title.

The popover's content will be injected into the .popover-content.

.arrow will become the popover's arrow.

The outermost wrapper element should have the .popover class.

title string | function ''

Default title value if title attribute isn't present.

If a function is given, it will be called with its this reference set to the element that the popover is attached to.

trigger string 'click' How popover is triggered - click | hover | focus | manual. You may pass multiple triggers; separate them with a space. manual cannot be combined with any other trigger.
viewport string | object | function { selector: 'body', padding: 0 }

Keeps the popover within the bounds of this element. Example: viewport: '#viewport' or { "selector": "#viewport", "padding": 0 }

If a function is given, it is called with the triggering element DOM node as its only argument. The this context is set to the popover instance.

sanitize boolean true Enable or disable the sanitization. If activated 'template', 'content' and 'title' options will be sanitized.
whiteList object Default value Object which contains allowed attributes and tags
sanitizeFn null | function null Here you can supply your own sanitize function. This can be useful if you prefer to use a dedicated library to perform sanitization.

Data attributes for individual popovers

Options for individual popovers can alternatively be specified through the use of data attributes, as explained above.

Methods

$().popover(options)

Initializes popovers for an element collection.

.popover('show')

Reveals an element's popover. Returns to the caller before the popover has actually been shown (i.e. before the shown.bs.popover event occurs). This is considered a "manual" triggering of the popover. Popovers whose both title and content are zero-length are never displayed.

$('#element').popover('show')

.popover('hide')

Hides an element's popover. Returns to the caller before the popover has actually been hidden (i.e. before the hidden.bs.popover event occurs). This is considered a "manual" triggering of the popover.

$('#element').popover('hide')

.popover('toggle')

Toggles an element's popover. Returns to the caller before the popover has actually been shown or hidden (i.e. before the shown.bs.popover or hidden.bs.popover event occurs). This is considered a "manual" triggering of the popover.

$('#element').popover('toggle')

.popover('destroy')

Hides and destroys an element's popover. Popovers that use delegation (which are created using the selector option) cannot be individually destroyed on descendant trigger elements.

$('#element').popover('destroy')

Events

Event Type Description
show.bs.popover This event fires immediately when the show instance method is called.
shown.bs.popover This event is fired when the popover has been made visible to the user (will wait for CSS transitions to complete).
hide.bs.popover This event is fired immediately when the hide instance method has been called.
hidden.bs.popover This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete).
inserted.bs.popover This event is fired after the show.bs.popover event when the popover template has been added to the DOM.
$('#myPopover').on('hidden.bs.popover', function () {
  // do something…
})

ScrollSpy scrollspy.js

Example in navbar

The ScrollSpy plugin is for automatically updating nav targets based on scroll position. Scroll the area below the navbar and watch the active class change. The dropdown sub items will be highlighted as well.

@fat

Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.

@mdo

Veniam marfa mustache skateboard, adipisicing fugiat velit pitchfork beard. Freegan beard aliqua cupidatat mcsweeney's vero. Cupidatat four loko nisi, ea helvetica nulla carles. Tattooed cosby sweater food truck, mcsweeney's quis non freegan vinyl. Lo-fi wes anderson +1 sartorial. Carles non aesthetic exercitation quis gentrify. Brooklyn adipisicing craft beer vice keytar deserunt.

one

Occaecat commodo aliqua delectus. Fap craft beer deserunt skateboard ea. Lomo bicycle rights adipisicing banh mi, velit ea sunt next level locavore single-origin coffee in magna veniam. High life id vinyl, echo park consequat quis aliquip banh mi pitchfork. Vero VHS est adipisicing. Consectetur nisi DIY minim messenger bag. Cred ex in, sustainable delectus consectetur fanny pack iphone.

two

In incididunt echo park, officia deserunt mcsweeney's proident master cleanse thundercats sapiente veniam. Excepteur VHS elit, proident shoreditch +1 biodiesel laborum craft beer. Single-origin coffee wayfarers irure four loko, cupidatat terry richardson master cleanse. Assumenda you probably haven't heard of them art party fanny pack, tattooed nulla cardigan tempor ad. Proident wolf nesciunt sartorial keffiyeh eu banh mi sustainable. Elit wolf voluptate, lo-fi ea portland before they sold out four loko. Locavore enim nostrud mlkshk brooklyn nesciunt.

three

Ad leggings keytar, brunch id art party dolor labore. Pitchfork yr enim lo-fi before they sold out qui. Tumblr farm-to-table bicycle rights whatever. Anim keffiyeh carles cardigan. Velit seitan mcsweeney's photo booth 3 wolf moon irure. Cosby sweater lomo jean shorts, williamsburg hoodie minim qui you probably haven't heard of them et cardigan trust fund culpa biodiesel wes anderson aesthetic. Nihil tattooed accusamus, cred irony biodiesel keffiyeh artisan ullamco consequat.

Keytar twee blog, culpa messenger bag marfa whatever delectus food truck. Sapiente synth id assumenda. Locavore sed helvetica cliche irony, thundercats you probably haven't heard of them consequat hoodie gluten-free lo-fi fap aliquip. Labore elit placeat before they sold out, terry richardson proident brunch nesciunt quis cosby sweater pariatur keffiyeh ut helvetica artisan. Cardigan craft beer seitan readymade velit. VHS chambray laboris tempor veniam. Anim mollit minim commodo ullamco thundercats.

Usage

Requires Bootstrap nav

Scrollspy currently requires the use of a Bootstrap nav component for proper highlighting of active links.

Resolvable ID targets required

Navbar links must have resolvable id targets. For example, a <a href="#home">home</a> must correspond to something in the DOM like <div id="home"></div>.

Non-:visible target elements ignored

Target elements that are not :visible according to jQuery will be ignored and their corresponding nav items will never be highlighted.

Requires relative positioning

No matter the implementation method, scrollspy requires the use of position: relative; on the element you're spying on. In most cases this is the <body>. When scrollspying on elements other than the <body>, be sure to have a height set and overflow-y: scroll; applied.

Via data attributes

To easily add scrollspy behavior to your topbar navigation, add data-spy="scroll" to the element you want to spy on (most typically this would be the <body>). Then add the data-target attribute with the ID or class of the parent element of any Bootstrap .nav component.

body {
  position: relative;
}
<body data-spy="scroll" data-target="#navbar-example">
  ...
  <div id="navbar-example">
    <ul class="nav nav-tabs" role="tablist">
      ...
    </ul>
  </div>
  ...
</body>

Via JavaScript

After adding position: relative; in your CSS, call the scrollspy via JavaScript:

$('body').scrollspy({ target: '#navbar-example' })

Methods

.scrollspy('refresh')

When using scrollspy in conjunction with adding or removing of elements from the DOM, you'll need to call the refresh method like so:

$('[data-spy="scroll"]').each(function () {
  var $spy = $(this).scrollspy('refresh')
})

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-offset="".

Name type default description
offset number 10 Pixels to offset from top when calculating position of scroll.

Events

Event Type Description
activate.bs.scrollspy This event fires whenever a new item becomes activated by the scrollspy.
$('#myScrollspy').on('activate.bs.scrollspy', function () {
  // do something…
})

<select> statements use the third-party plug-in Bootstrap Select that hides the original <select> mark-up and builds out the <select> as <div>s that can be styled.

Methods

See the official page for Bootstrap-Select Methods.

Smooth Scroll smooth-scroll.js

Add the data attribute data-smooth-scroll to any anchor tag to smoothly navigate at the target content on the same page.

Example

Title

One two three four five six seven eight nine ten eleven twelve thirteen

Description

One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

Summary

thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty

  <ul class="nav nav-tabs">
    <li role="presentation">
      <a href="#title" data-smooth-scroll>Title</a>
    </li>
    <li role="presentation">
      <a href="#description" data-smooth-scroll>Description</a>
    </li>
    <li role="presentation">
      <a href="#summary" data-smooth-scroll>Summary</a>
    </li>
  </ul>
  <div>
    <div class="well no-shadow">
      <h2 id="title">Title</h2>
      <p>One two three four five six seven eight nine ten eleven twelve thirteen</p>
    </div>
    <div class="well no-shadow">
      <h2 id="description">Description</h2>
      <p>One two three four five six seven eight nine ten eleven twelve thirteen fourteen fifteen sixteen seventeen eighteen nineteen twenty twenty-one twenty-two twenty-three twenty-four twenty-five twenty-six twenty-seven twenty-eight twenty-nine thirty thirty-one thirty-two thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>
    </div>
    <div class="well no-shadow">
      <h2 id="summary">Summary</h2>
      <p>thirty-three thirty-four thirty-five thirty-six thirty-seven thirty-eight thirty-nine forty</p>
    </div>
  </div>
  

Togglable tabs tab.js

Example tabs

Add quick, dynamic tab functionality to transition through panes of local content, even via dropdown menus. Nested tabs are not supported.

Responsive tab design

Tabs structure changes via javascript to accordions on screen sizes lower than 992px (sm and below size). If js is not implemented, tabs will not be responsive and remain regular tabs on mobile and tablet devices.

Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.

Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.

Alternate design

You can remove the border around the main content by adding .border-none after .tab-pane.

Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.

Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit. Keytar helvetica VHS salvia yr, vero magna velit sapiente labore stumptown. Vegan fanny pack odio cillum wes anderson 8-bit, sustainable jean shorts beard ut DIY ethical culpa terry richardson biodiesel. Art party scenester stumptown, tumblr butcher vero sint qui sapiente accusamus tattooed echo park.

<div role="tabpanel" class="tab-pane border-none fade" id="" aria-labelledby="">
  ...
</div>

Extends tabbed navigation

This plugin extends the tabbed navigation component to add tabbable areas.

    $("#tabs-frame").html('...');
    $(document).lxk_tabs({selector: '#myDTabs', dynamic: true });

Usage

Enable tabbable tabs via JavaScript (each tab needs to be activated individually):

$('#myTabs a').click(function (e) {
  e.preventDefault()
  $(this).tab('show')
})

You can activate individual tabs in several ways:

$('#myTabs a[href="#profile"]').tab('show') // Select tab by name
$('#myTabs a:first').tab('show') // Select first tab
$('#myTabs a:last').tab('show') // Select last tab
$('#myTabs li:eq(2) a').tab('show') // Select third tab (0-indexed)

Markup

You can activate a tab or pill navigation without writing any JavaScript by simply specifying data-toggle="tab" or data-toggle="pill" on an element. Adding the nav and nav-tabs classes to the tab ul will apply the Bootstrap tab styling, while adding the nav and nav-pills classes will apply pill styling.

<div>

  <!-- Nav tabs -->
  <ul class="nav nav-tabs" role="tablist">
    <li role="presentation" class="active"><a href="#home" aria-controls="home" role="tab" data-toggle="tab">Home</a></li>
    <li role="presentation"><a href="#profile" aria-controls="profile" role="tab" data-toggle="tab">Profile</a></li>
    <li role="presentation"><a href="#messages" aria-controls="messages" role="tab" data-toggle="tab">Messages</a></li>
    <li role="presentation"><a href="#settings" aria-controls="settings" role="tab" data-toggle="tab">Settings</a></li>
  </ul>

  <!-- Tab panes -->
  <div class="tab-content">
    <div role="tabpanel" class="tab-pane active" id="home">...</div>
    <div role="tabpanel" class="tab-pane" id="profile">...</div>
    <div role="tabpanel" class="tab-pane" id="messages">...</div>
    <div role="tabpanel" class="tab-pane" id="settings">...</div>
  </div>

</div>

Fade effect

To make tabs fade in, add .fade to each .tab-pane. The first tab pane must also have .in to make the initial content visible.

<div class="tab-content">
  <div role="tabpanel" class="tab-pane fade in active" id="home">...</div>
  <div role="tabpanel" class="tab-pane fade" id="profile">...</div>
  <div role="tabpanel" class="tab-pane fade" id="messages">...</div>
  <div role="tabpanel" class="tab-pane fade" id="settings">...</div>
</div>

Methods

$().tab

Activates a tab element and content container. Tab should have either a data-target or an href targeting a container node in the DOM. In the above examples, the tabs are the <a>s with data-toggle="tab" attributes.

.tab('show')

Selects the given tab and shows its associated content. Any other tab that was previously selected becomes unselected and its associated content is hidden. Returns to the caller before the tab pane has actually been shown (i.e. before the shown.bs.tab event occurs).

$('#someTab').tab('show')

Events

When showing a new tab, the events fire in the following order:

  1. hide.bs.tab (on the current active tab)
  2. show.bs.tab (on the to-be-shown tab)
  3. hidden.bs.tab (on the previous active tab, the same one as for the hide.bs.tab event)
  4. shown.bs.tab (on the newly-active just-shown tab, the same one as for the show.bs.tab event)

If no tab was already active, then the hide.bs.tab and hidden.bs.tab events will not be fired.

Event Type Description
show.bs.tab This event fires on tab show, but before the new tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively.
shown.bs.tab This event fires on tab show after a tab has been shown. Use event.target and event.relatedTarget to target the active tab and the previous active tab (if available) respectively.
hide.bs.tab This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use event.target and event.relatedTarget to target the current active tab and the new soon-to-be-active tab, respectively.
hidden.bs.tab This event fires after a new tab is shown (and thus the previous active tab is hidden). Use event.target and event.relatedTarget to target the previous active tab and the new active tab, respectively.
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
  e.target // newly activated tab
  e.relatedTarget // previous active tab
})

Third Party Plugins

While generally avoided (To keep overhead and code bloat to a minimum), certain third-party plugins have been researched and implemented into the LxCore framework. These plugins allow for enhanced functionality and greater breadth of design.

Picturefill picturefill.js

The picturefill plugin creates different images at separate breakpoints in order to allow for optimization of images and change in design where necessary.

Example

To see an example of the picturefill plugin used within the framework see the Jumbotron component

Usage

The picturefill plugin has a couple of html markup styles for various uses (See picturefill documentation). The most pertinent to the LxCore framework is simply using the html5 picture element with ie9 polyfill.

<picture>
  <!--[if IE 9]><video style="display: none;"><![endif]-->
  <source srcset="https://fakeimg.pl/1200x800" media="(min-width: 1200px)">
  <source srcset="https://fakeimg.pl/900x600" media="(min-width: 992px)">
  <source srcset="https://fakeimg.pl/600x400" media="(min-width: 768px)">
  <!--[if IE 9]></video><![endif]-->
  <img srcset="https://fakeimg.pl/300x200" alt="…">
</picture>

Source Documentation

Picturefill is a third-party plugin implemented into LXCore for the sake of optimization and design of images. The documentation for installation and use of picturefill.js is located on Github

Current version of picturefill plugin being used is 3.0.2

Tablesorter jquery.tablesorter.js

The tablesorter plugin allows users to click the header of a table the plugin is applied to and sort the associated column of the header.

Example

To see an example of the tablesorter plugin used within the framework see the Table component

Usage

The tablesorter plugin can sort multiple types of data and has some extensibility associated with it (See tablesorter documentation). The tablesorter plugin can be used by simply adding the .table-sortable to any table needing this functionality.

<table class="table table-sortable">
  ...
</table>

Source Documentation

Tablesorter is a third-party plugin implemented into LXCore for the sake of extra functionality of tables. The documentation for installation and use of jquery.tablesorter.js is located on Github

Current version of tablesorter plugin being used is 2.0.5b

Toggle Switch

Example

This design element is used when you need to toggle between different layouts and/or views.

<div class="toggle-btn">
  <label>
    <input type="checkbox" class="toggle-switch" data-toggle-switch>
    <span class="round-btn"></span> Preview
  </label>
</div>

Tooltips tooltip.js

Inspired by the excellent jQuery.tipsy plugin written by Jason Frame; Tooltips are an updated version, which don't rely on images, use CSS3 for animations, and data-attributes for local title storage.

Tooltips with zero-length titles are never displayed.

Examples

Applied to in-line links

Tight pants next level keffiyeh you probably haven't heard of them. Photo booth beard raw denim letterpress vegan messenger bag stumptown. Farm-to-table seitan, mcsweeney's fixie sustainable quinoa 8-bit american apparel have a terry richardson vinyl chambray. Beard stumptown, cardigans banh mi lomo thundercats. Tofu biodiesel williamsburg marfa, four loko mcsweeney's cleanse vegan chambray. A really ironic artisan whatever keytar, scenester farm-to-table banksy Austin twitter handle freegan cred raw denim single-origin coffee viral.

<p>Tight pants next level keffiyeh <a href="#" data-toggle="tooltip" title="Default tooltip">you probably</a> haven't heard of them.</p>

Applied to buttons

<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="left" title="Tooltip on left">Tooltip on left</button>

<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="top" title="Tooltip on top">Tooltip on top</button>

<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" title="Tooltip on bottom">Tooltip on bottom</button>

<button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="right" title="Tooltip on right">Tooltip on right</button>

Applied to helper icon

Add a class of .helper-tooltip to the icon tag to apply color, sizing and icon placement.

<div class="form-group">
  <label for="ef-pid">PID<i class="icon icon-help helper-tooltip" aria-hidden="true" data-toggle="tooltip" data-container="body" data-placement="auto top" data-trigger="click hover" title="An auto-generated number used as a global identifier."></i></label>
  <input type="text" class="form-control" name="pid" id="ef-pid" placeholder="">
</div>

Opt-in functionality

For performance reasons, the Tooltip and Popover data-apis are opt-in, meaning you must initialize them yourself.

One way to initialize all tooltips on a page would be to select them by their data-toggle attribute:

$(function () {
  $('[data-toggle="tooltip"]').tooltip()
})

Usage

The tooltip plugin generates content and markup on demand, and by default places tooltips after their trigger element.

Trigger the tooltip via JavaScript:

$('#example').tooltip(options)

Markup

The required markup for a tooltip is only a data attribute and title on the HTML element you wish to have a tooltip. The generated markup of a tooltip is rather simple, though it does require a position (by default, set to top by the plugin).

<!-- HTML to write -->
<a href="#" data-toggle="tooltip" title="Some tooltip text!">Hover over me</a>

<!-- Generated markup by the plugin -->
<div class="tooltip top" role="tooltip">
  <div class="tooltip-arrow"></div>
  <div class="tooltip-inner">
    Some tooltip text!
  </div>
</div>

Multiple-line links

Sometimes you want to add a tooltip to a hyperlink that wraps multiple lines. The default behavior of the tooltip plugin is to center it horizontally and vertically. Add white-space: nowrap; to your anchors to avoid this.

Tooltips in button groups, input groups, and tables require special setting

When using tooltips on elements within a .btn-group or an .input-group, or on table-related elements (<td>, <th>, <tr>, <thead>, <tbody>, <tfoot>), you'll have to specify the option container: 'body' (documented below) to avoid unwanted side effects (such as the element growing wider and/or losing its rounded corners when the tooltip is triggered).

Don't try to show tooltips on hidden elements

Invoking $(...).tooltip('show') when the target element is display: none; will cause the tooltip to be incorrectly positioned.

Accessible tooltips for keyboard and assistive technology users

For users navigating with a keyboard, and in particular users of assistive technologies, you should only add tooltips to keyboard-focusable elements such as links, form controls, or any arbitrary element with a tabindex="0" attribute.

Tooltips on disabled elements require wrapper elements

To add a tooltip to a disabled or .disabled element, put the element inside of a <div> and apply the tooltip to that <div> instead.

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-, as in data-animation="".

Note that for security reasons the sanitize, sanitizeFn and whiteList options cannot be supplied using data attributes.

Name Type Default Description
animation boolean true Apply a CSS fade transition to the tooltip
container string | false false

Appends the tooltip to a specific element. Example: container: 'body'. This option is particularly useful in that it allows you to position the tooltip in the flow of the document near the triggering element - which will prevent the tooltip from floating away from the triggering element during a window resize.

delay number | object 0

Delay showing and hiding the tooltip (ms) - does not apply to manual trigger type

If a number is supplied, delay is applied to both hide/show

Object structure is: delay: { "show": 500, "hide": 100 }

html boolean false Insert HTML into the tooltip. If false, jQuery's text method will be used to insert content into the DOM. Use text if you're worried about XSS attacks.
placement string | function 'top'

How to position the tooltip - top | bottom | left | right | auto.
When "auto" is specified, it will dynamically reorient the tooltip. For example, if placement is "auto left", the tooltip will display to the left when possible, otherwise it will display right.

When a function is used to determine the placement, it is called with the tooltip DOM node as its first argument and the triggering element DOM node as its second. The this context is set to the tooltip instance.

selector string false If a selector is provided, tooltip objects will be delegated to the specified targets. In practice, this is used to also apply tooltips to dynamically added DOM elements (jQuery.on support). See this and an informative example.
template string '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'

Base HTML to use when creating the tooltip.

The tooltip's title will be injected into the .tooltip-inner.

.tooltip-arrow will become the tooltip's arrow.

The outermost wrapper element should have the .tooltip class.

title string | function ''

Default title value if title attribute isn't present.

If a function is given, it will be called with its this reference set to the element that the tooltip is attached to.

trigger string 'hover focus' How tooltip is triggered - click | hover | focus | manual. You may pass multiple triggers; separate them with a space. manual cannot be combined with any other trigger.
viewport string | object | function { selector: 'body', padding: 0 }

Keeps the tooltip within the bounds of this element. Example: viewport: '#viewport' or { "selector": "#viewport", "padding": 0 }

If a function is given, it is called with the triggering element DOM node as its only argument. The this context is set to the tooltip instance.

sanitize boolean true Enable or disable the sanitization. If activated 'template', 'content' and 'title' options will be sanitized.
whiteList object Default value Object which contains allowed attributes and tags
sanitizeFn null | function null Here you can supply your own sanitize function. This can be useful if you prefer to use a dedicated library to perform sanitization.

Data attributes for individual tooltips

Options for individual tooltips can alternatively be specified through the use of data attributes, as explained above.

Methods

$().tooltip(options)

Attaches a tooltip handler to an element collection.

.tooltip('show')

Reveals an element's tooltip. Returns to the caller before the tooltip has actually been shown (i.e. before the shown.bs.tooltip event occurs). This is considered a "manual" triggering of the tooltip. Tooltips with zero-length titles are never displayed.

$('#element').tooltip('show')

.tooltip('hide')

Hides an element's tooltip. Returns to the caller before the tooltip has actually been hidden (i.e. before the hidden.bs.tooltip event occurs). This is considered a "manual" triggering of the tooltip.

$('#element').tooltip('hide')

.tooltip('toggle')

Toggles an element's tooltip. Returns to the caller before the tooltip has actually been shown or hidden (i.e. before the shown.bs.tooltip or hidden.bs.tooltip event occurs). This is considered a "manual" triggering of the tooltip.

$('#element').tooltip('toggle')

.tooltip('destroy')

Hides and destroys an element's tooltip. Tooltips that use delegation (which are created using the selector option) cannot be individually destroyed on descendant trigger elements.

$('#element').tooltip('destroy')

Events

Event Type Description
show.bs.tooltip This event fires immediately when the show instance method is called.
shown.bs.tooltip This event is fired when the tooltip has been made visible to the user (will wait for CSS transitions to complete).
hide.bs.tooltip This event is fired immediately when the hide instance method has been called.
hidden.bs.tooltip This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete).
inserted.bs.tooltip This event is fired after the show.bs.tooltip event when the tooltip template has been added to the DOM.
$('#myTooltip').on('hidden.bs.tooltip', function () {
  // do something…
})

Transitions transition.js

About transitions

For simple transition effects, include transition.js once alongside the other JS files. If you're using the compiled (or minified) bootstrap.js, there is no need to include this—it's already there.

What's inside

Transition.js is a basic helper for transitionEnd events as well as a CSS transition emulator. It's used by the other plugins to check for CSS transition support and to catch hanging transitions.

Disabling transitions

Transitions can be globally disabled using the following JavaScript snippet, which must come after transition.js (or bootstrap.js or bootstrap.min.js, as the case may be) has loaded:

$.support.transition = false