set dropdown list option with ellipses

后端 未结 3 1306
囚心锁ツ
囚心锁ツ 2021-01-17 03:18

I want to add ellipsis in the dropdown list options if I click the ellipsis able to see the full option values

for example, dropdown list looking li

3条回答
  •  鱼传尺愫
    2021-01-17 04:05

    This is code for setting title display Option text

    $(function(){
                  $("select option").attr( "title", "" );
                  $("select option").each(function(i){
                    this.title = this.text;
    
                  })
                });
                $("select").tooltip({
                    left:25
                });
    

提交回复
热议问题