Skip to content
Afraithe edited this page Sep 13, 2010 · 1 revision

This plugin will add a onPaste event to the editor.

Example:

<textarea id="content1" name="content1"></textarea>
<script type="text/javascript" src="punymce/puny_mce.js"></script>
<script type="text/javascript" src="punymce/paste.js"></script>
<script type="text/javascript">
var editor1 = new punymce.Editor({
        id : 'content1',
        plugins : 'Paste'
});

editor1.onPaste.add(function(ed) {
        alert('Content was pasted.');
});
</script>
Clone this wiki locally