I am building a webapp using Twitter Bootstrap. I would like to also show an input's popover when the input in the previous cell is hovered. I currently invoke $('input').popover();
(which I might specify a bit more, but it's fine for now).
html:
<tr>
<td><input id="client-id" type="text"></td>
<td><input id="client-name" type="text" tabindex="0" data-toggle="popover" data-trigger="hover" data-content="this is a popover"></td>
</tr>
I want the popover of #client-name
to also show when #client-code
is hovered. Do I achieve this by adjusting the javascript? Or can I achieve this with the data-toggle type attributes?