Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 358 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 358 Bytes

jQuery extension that makes any contenteditable able to paste only plain text

How to use it

<div id="editor" contenteditable="true">
    Text inside contenteditable element...
</div>
$(document).ready(function(){
    $("#editor").pastePlainText();
});