Bootstrap 3 Tooltip over Glyphicon

前端 未结 5 1321
梦如初夏
梦如初夏 2020-12-25 12:00

Not sure if this even possible, I am trying to invoke a tooltip over a glyphicon inside an input group, my code (which does not work) is;

5条回答
  •  死守一世寂寞
    2020-12-25 13:05

    Using Bootstrap's Popover makes it a bit nice, Here is the documentation, and sample code snippet

    $(function () {
      $('.fa').popover({trigger: "hover"});
    })
    
    
    
    
      
      
      Information Popover snippet
      
    
    
    
    
      
      
    
    

提交回复
热议问题