I use Twitter Bootstrap to create a basic layout for the site. I need to show a data table in which each item has a data attribute that I want to show as a popup
eg:
<tr> <td><a href="#" class="popover-test" id ="test" rel="popover" data-content="Content 1: this shows fine!" data-original-title="Title 1">Hover for popover</a> </td> <td>two</td> <td>three</td> </tr> <tr> <td><a href="#" class="popover-test" id ="test" rel="popover" data-content="Doesn't show :(" data-original-title="Title 2">Hover for popover</a> </td> <td>two</td> <td>three</td> </tr>
it seems that the pop file will only work with the very first item in the list. See This jsfiddle: http://jsfiddle.net/stycu/
Does anyone know if this is by design or if it is a mistake? I checked the problems on github, but can't see anything referring to it.
early
source share