I'am using jQuery and Bootstrap in my TYPO3-Extension.
My HTML-Elements have an tooltip (bootstrap tooltip)
<input type="text"
class="form-control"
data-toggle="tooltip"
data-placement="bottom"
title="Nachname eingeben"
placeholder="Nachname" />
If I rollover the element --> Tooltip is shown correctly.
But if I rollout the element --> whole input element is deleted
The JS to the site is:
$.noConflict();
$(document).ready(function ($) {
// tooltips
$('[data-toggle="tooltip"]').tooltip();
} );
whats the problem????