Pop up window in Bootstrap?

374 views Asked by At

I see a pop up window when ever i move my cursor into any of the textbox in this website. How to create those in bootstrap ?

1

There are 1 answers

0
rm-vanda On BEST ANSWER

It looks like this was done with Bootstrap's Popover

Here is their code:

$(function() {

  // Set up the help menus.
  var help_divs = $('.control-group').filter('div[id]').each(function() {
    var id = $(this).attr('id');
    var placement = 'left';
    if (id.indexOf('server_') == 0) {
      placement = 'right';
    }
    $(this).popover({
      placement: placement,
      trigger: 'hover'});
  });

Alternatively, there is JQuery UI --

Specifically --

Tooltips