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
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 });