diff --git a/docs/dependencies.md b/docs/dependencies.md
index a61ad65c8..265d4850a 100644
--- a/docs/dependencies.md
+++ b/docs/dependencies.md
@@ -81,6 +81,7 @@ AdminLTE makes use of the following plugins. For documentation, updates or licen
jQuery Vector Map
Overlay Scrollbars
Pace Progress
+ FilterizR
diff --git a/docs/javascript/card-widget.md b/docs/javascript/card-widget.md
index fef418c62..47022fa85 100644
--- a/docs/javascript/card-widget.md
+++ b/docs/javascript/card-widget.md
@@ -139,7 +139,7 @@ This attribute, when attached to a button, allows the box to be maximize/minimiz
To activate any button using jQuery, you must provide the removeTrigger and collapseTrigger options. Otherwise, the plugin will assume the default `data-card-widget` selectors.
```js
-$('#my-card').Widget(options)
+$('#my-card').CardWidget(options)
```
##### Options
@@ -192,4 +192,4 @@ Example: `$('#my-card').on('expanded.lte.cardwidget', handleExpandedEvent)`
|toggleMaximize | Toggles the state of the card between maximized and minimized
{: .table .table-bordered .bg-light}
-Example: `$('#my-card-widget').Widget('toggle')`
+Example: `$('#my-card-widget').CardWidget('toggle')` or `$('#my-card').CardWidget('toggle')`