Not sure if this even possible, I am trying to invoke a tooltip over a glyphicon inside an input group, my code (which does not work) is;
<div class="input-group">
<input type="text" class="form-control" name="security" id="security"><span class="input-group-addon"><span class="glyphicon glyphicon-info-sign" data-toggle="tooltip" data-container: 'body' title="" data-original-title="Security Code"></span></span>
</div>
I'm using Bootstrap 3, and the latest version of jQuery.
You can get a simple tooltip over the glyphicon using the title attribute (which is blank in your example).
title="info"
Working code
// add this in your js
// all the glyphicons having the class "my-tooltip" will show a tooltip if "title" attribute is present
$(".my-tooltip").tooltip();
<span class='glyphicon glyphicon-info-sign my-tooltip' title="here goes the tooltip text"></span>