summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/README.md b/README.md
index 325c663..8bbd164 100644
--- a/README.md
+++ b/README.md
@@ -81,4 +81,18 @@ If you want to include the necessary styling in your site's stylesheet, you can
```javascript
$('article').readmore({embedCSS: false});
-``` \ No newline at end of file
+```
+
+## Removing Readmore
+
+You can remove the Readmore functionality like so:
+
+```javascript
+$('article').readmore('destroy');
+```
+
+Or, you can be more surgical by specifying a particular element:
+
+```javascript
+$('article:first').readmore('destroy');
+```