ContentEditable

Version 6.1 by mflorea on 2010/07/06 17:53

function onAction(hook){
  var iframe = document.createElement('iframe');
  iframe.style.border = '1px solid black';
  iframe.addEventListener('load', function() {
    iframe.contentWindow.document.body.innerHTML = '

beforeafter

'; //iframe.contentWindow.document.designMode = 'on'; iframe.contentWindow.document.body.contentEditable = true; iframe.focus(); }, false); hook.parentNode.insertBefore(iframe, hook); }