JSFiddle - React, Tailwind, and code Playground

by bingjie2680

HTML

<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.2/js/bootstrap.min.js"></script>
<div class="tooltip-wrapper" data-title="Dieser Link fĂĽhrt zu Google">
    <select class="btn btn-default" disabled>
        <option>test1</option>    
        <option>test2</option> 
        <option>test3</option> 
    </select>
</div>

CSS

body {
    margin-top: 50px;
}

.tooltip-wrapper {
    display: inline-block;
    margin-left: 40px;
}

JavaScript

$(function() {
    $('.tooltip-wrapper').tooltip({placement: "bottom"});
});