[Solved] How can i add a Tooltip in chosen jquery plugin? [closed]

Here’s a possible solution without having to use any other libraries, or anything else… This can be accomplished with a bit of CSS. HTML: <!–// we have to wrap the select in a span to use :after with it //–> <span class=”tooltip” title=”some title for your tooltip”> <select> <option>Something</option> <option>Something Else</option> </select> </span> CSS: .tooltip:hover:after … Read more