diff --git a/docs/components/popovers.md b/docs/components/popovers.md
index 5f26e4bbd36a0c40f8493199b2de0a4d4a23af03..cc1b0fe2e875dff6799f7eeb83b12719ca4618b5 100644
--- a/docs/components/popovers.md
+++ b/docs/components/popovers.md
@@ -353,6 +353,10 @@ Toggles the ability for an element's popover to be shown or hidden.
       <td>hidden.bs.popover</td>
       <td>This event is fired when the popover has finished being hidden from the user (will wait for CSS transitions to complete).</td>
     </tr>
+    <tr>
+      <td>inserted.bs.popover</td>
+      <td>This event is fired after the <code>show.bs.popover</code> event when the tooltip template has been added to the DOM.</td>
+    </tr>
   </tbody>
 </table>
 
diff --git a/docs/components/tooltips.md b/docs/components/tooltips.md
index a8b251c09a2abd5da3c21e87971343f6cbb11ba8..7c7f9af8b018b555b75080755fe7877be3e425f8 100644
--- a/docs/components/tooltips.md
+++ b/docs/components/tooltips.md
@@ -329,6 +329,10 @@ Toggles the ability for an element's tooltip to be shown or hidden.
       <td>hidden.bs.tooltip</td>
       <td>This event is fired when the tooltip has finished being hidden from the user (will wait for CSS transitions to complete).</td>
     </tr>
+    <tr>
+      <td>inserted.bs.tooltip</td>
+      <td>This event is fired after the <code>show.bs.tooltip</code> event when the tooltip template has been added to the DOM.</td>
+    </tr>
   </tbody>
 </table>