mousehover - Bootstrap tooltip and awesome bootstrap checkbox error -
so seems when using awesome bootstrap checkbox , bootstrap tooltip check icon showed after move mouse checkbox
<div class="checkbox checkbox-circle"> <input id="checkbox7" type="checkbox" data-toggle='tooltip' data-placement='bottom' data-original-title="tooltip here" class='checkbox'> <label for="checkbox7"> rounded </label> </div>
here's javascript (source: bootstrap)
$(function () { $("[data-toggle='tooltip']").tooltip(); });
here's example: http://codepen.io/anon/pen/ejbyaz
is there way fix this?
Comments
Post a Comment