I'm not 100% sure this is at all possible, because input
doesn't have a rel
attribute (the example on the Bootstrap website shows only 1 example with rel="tooltip"
), but I think it should work.
This is my HTML:
<input id="password" type="password" />
And this is how I try to trigger it:
$(document).ready(function () {
$('input[id=password]').tooltip({'trigger':'focus'});
});
And I also tried this:
$('#password').tooltip({'trigger':'focus'});
And none of them seem to work. I eventually want to trigger it manually, but this is the first step. Does anybody know a solution for this? Is it possible at all? Thanks.
Try to specify "title" parameter to tooltip. Like:
$('#password').tooltip({'trigger':'focus', 'title': 'Password tooltip'});
Btw, that's nothing wrong with input element having "rel" attribute.