<p>Options can be passed via data attributes or JavaScript. For data attributes, append the option name to <code>data-</code>, as in <code>data-animation=""</code>.</p>
<p>Options can be passed via data attributes or JavaScript. For data attributes, append the option name to <code>data-</code>, as in <code>data-animation=""</code>.</p>
<tableclass="table table-bordered table-striped">
<tableclass="table table-bordered table-striped">
<thead>
<thead>
<tr>
<tr>
<thstyle="width: 100px;">Name</th>
<thstyle="width: 100px;">Name</th>
<thstyle="width: 100px;">type</th>
<thstyle="width: 100px;">type</th>
<thstyle="width: 50px;">default</th>
<thstyle="width: 50px;">default</th>
<th>description</th>
<th>description</th>
</tr>
</tr>
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr>
<td>animation</td>
<td>animation</td>
<td>boolean</td>
<td>boolean</td>
<td>true</td>
<td>true</td>
<td>apply a css fade transition to the tooltip</td>
<td>apply a css fade transition to the tooltip</td>
</tr>
</tr>
<tr>
<tr>
<td>html</td>
<td>html</td>
<td>boolean</td>
<td>boolean</td>
<td>false</td>
<td>false</td>
<td>Insert html into the popover. If false, jquery's <code>text</code> method will be used to insert content into the dom. Use text if you're worried about XSS attacks.</td>
<td>Insert html into the popover. If false, jquery's <code>text</code> method will be used to insert content into the dom. Use text if you're worried about XSS attacks.</td>
</tr>
</tr>
<tr>
<tr>
<td>placement</td>
<td>placement</td>
<td>string | function</td>
<td>string | function</td>
<td>'right'</td>
<td>'right'</td>
<td>how to position the popover - top | bottom | left | right</td>
<td>how to position the popover - top | bottom | left | right</td>
</tr>
</tr>
<tr>
<tr>
<td>selector</td>
<td>selector</td>
<td>string</td>
<td>string</td>
<td>false</td>
<td>false</td>
<td>if a selector is provided, tooltip objects will be delegated to the specified targets</td>
<td>if a selector is provided, tooltip objects will be delegated to the specified targets if a selector is provided, tooltip objects will be delegated to the specified targets. in practice, this is used to enable dynamic HTML content to have popovers added. See <ahref="https://github.com/twitter/bootstrap/issues/4215">this</a> and <ahref="http://jsfiddle.net/KPeKS/4/">an informative example</a>.</td>