Our Modal plugin is a super slim take on the traditional modal js plugin! We took special care to include only the bare functionality that we require at twitter.
Download$('#modal-content').modal(options)
boolean
) - if true, it will include a modal-backdrop element.boolean
) - if true, it will close the modal when escape key is pressed.Activates your content as a modal. Accepts an optional options object
. If you want your modal to fade in and out, just add a .fade
class to your .modal
element (refer to the demo to see this in action).
$('#modal-content').modal({ closeOnEscape: true })
Bootstraps modal class makes use of custom events. You can use trigger
to make things happen manually or bind
to listen for things happening.
Toggle the modal open state.
$('#modal-content').trigger('modal:toggle')
Opens the modal.
$('#modal-content').trigger('modal:show')
Closes the modal.
$('#modal-content').trigger('modal:hide')
Fired when the modal has been made visible.
$('#modal-content') .bind('modal:shown', function () { // do something here... })
Fired when the modal has become hidden
$('#modal-content') .bind('modal:hidden', function () { $(this).remove() // cleanup jQuery plugin data on hide })
This plugin is for adding dropdowns to the bootstrap nav.
Download$('#topbar').dropdown()
Activates menus for given topbar navigation.
This plugin adds quick, dynamic tab and pill functionality.
Download$('.tabs').tabs()
Activates tab and pill functionality for a given container. Tab links should reference id's in the document.
<ul class="tabs"> <li class="active"><a href="#home">Home</a></li> <li><a href="#profile">Profile</a></li> <li><a href="#messages">Messages</a></li> <li><a href="#settings">Settings</a></li> </ul> <div class="pill-content"> <div class="active" id="home">...</div> <div id="profile">...</div> <div id="messages">...</div> <div id="settings">...</div> </ul>
note: To manually activate a tab just fire a click event on one of the tabs.
$('.tabs a[href="#messages"]').click()
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.
Banksy do proident, brooklyn photo booth delectus sunt artisan sed organic exercitation eiusmod four loko. Quis tattooed iphone esse aliqua. Master cleanse vero fixie mcsweeney's. Ethical portland aute, irony food truck pitchfork lomo eu anim. Aesthetic blog DIY, ethical beard leggings tofu consequat whatever cardigan nostrud. Helvetica you probably haven't heard of them carles, marfa veniam occaecat lomo before they sold out in shoreditch scenester sustainable thundercats. Consectetur tofu craft beer, mollit brunch fap echo park pitchfork mustache dolor.
Sunt qui biodiesel mollit officia, fanny pack put a bird on it thundercats seitan squid ad wolf bicycle rights blog. Et aute readymade farm-to-table carles 8-bit, nesciunt nulla etsy adipisicing organic ea. Master cleanse mollit high life, next level Austin nesciunt american apparel twee mustache adipisicing reprehenderit hoodie portland irony. Aliqua tofu quinoa +1 commodo eiusmod. High life williamsburg cupidatat twee homo leggings. Four loko vinyl DIY consectetur nisi, marfa retro keffiyeh vegan. Fanny pack viral retro consectetur gentrify fap.
Based on the excellent jQuery.tipsy plugin written by Jason Frame; twipsy is an updated version, which doesn't rely on images, uses css3 for animations, and data-attributes for title storage!
Download$('#example').twipsy(options)
boolean
) - apply a css fade transition to the tooltip.number
) - delay before showing tooltip (ms).number
) - delay before hiding tooltip (ms).string
) - fallback text to use when no tooltip text.string
) - position of tooltip - above | below | left | right.boolean
) - is tooltip content HTML?boolean
) - use live event support?number
) - pixel offset of tooltip from element.string|function
) - attribute/callback containing tooltip text.string
) - how tooltip is triggered - hover | focus | manual.Attaches a twipsy handler to an element collection.
You can manually control twipsies by firing events on the controlling element.
Reveals an elements twipsy.
$('#element').trigger('twipsy:show')
Hides an elements twipsy.
$('#element').trigger('twipsy:hide')
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.
The popover plugin provides a simple interface for adding popovers to your application. It extends the boostrap-twipsy.js plugin, so be sure to grab that file as well when including popovers in your project!
Download$('#example').popover(options)
boolean
) - apply a css fade transition to the popover.number
) - delay before showing tooltip (ms).number
) - delay before hiding tooltip (ms).string
) - fallback text to use when no tooltip text.string
) - position of tooltip - above | below | left | right.boolean
) - is tooltip content HTML?boolean
) - use live event support?number
) - pixel offset of tooltip from element.string|function
) - text for title in popover. Alternatively you can specify a data-title
attribute.string|function
) - text for content in popover. Also you can specify a data-content
attibute.string
) - how tooltip is triggered - hover | focus | manual.Initializes popovers for an element collection.
You can manually control popovers by firing events on the controlling element.
Reveals an elements popover.
$('#element').trigger('popover:show')
Hides an elements popover.
$('#element').trigger('popover:hide')
The alert plugin is a super tiny class for adding close functionality to alerts.
Download$(".alert-message").alert()
Wraps all alerts with close functionality. To have your alerts animate out when closed, make sure they have the .fade
and .in
class already applied to them.
You can manually control alerts by firing events on them.
Closes an alert.
$(".alert-message").trigger('alert:close')