Is it possible to use a div as content for Twitter's Popover

后端 未结 8 1355
一向
一向 2020-11-28 01:00

I am using twitter\'s bootstrap\'s popover here. Right now, when i scroll over the popover text a popover appears with just text from the \'s da

8条回答
  •  离开以前
    2020-11-28 01:42

    Another alternate method if you wish to just have look and feel of pop over. Following is the method. Offcourse this is a manual thing, but nicely workable :)

    HTML - button

    
    

    HTML - popover

    ..... your code here .......

    JS

    $("#bg").click(function(){
            $('.bgform').slideToggle();
    });
    

提交回复
热议问题