diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -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'); +``` |