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.
question from:
https://stackoverflow.com/questions/10371948/how-to-use-bootstrap-tooltip-on-input-elements 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…