Tooltip on select box options

前端 未结 1 1845
抹茶落季
抹茶落季 2021-01-19 05:21

I have a select box in which the options have policy name. I need to display the description of policies in tool tip of the options. I tried tipr plugin where data-tip optio

1条回答
  •  谎友^
    谎友^ (楼主)
    2021-01-19 06:23

    You must specify a container for tooltip outside select, because tooltip is rendered inside select and is ignored by browser. As is specified in twitter bootstrap documentation tooltips are by default disabled you must enable it by yourself. http://getbootstrap.com/javascript/#four-directions See an working example below or https://jsfiddle.net/5xj10efa/

    
    
    
        
        Document
        
    
    
    
        

    Update: add a code snippet

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

    0 讨论(0)
提交回复
热议问题