I have an iframe object, and there is a contenteditable body inside. I would like to paste some text, or html element at the caret position. I tried this code, but I've got an error Cannot read property 'createRange' of undefined
$('#edit_frame').selection.createRange().pasteHTML($('<span>text</span>'));