Tuesday, April 13, 2004

How to Create an HTML Editor Application
Reference:
http://www.hyperwrite.com/aspscripts/framer.asp?target=../features/contenteditable.htm
http://msdn.microsoft.com/workshop/author/editing/tutorials/html_editor.asp

direct page edit and blog?


First, make page editable:
javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0
Second, make copy of page:
javascript:x=window.open();x.document.write(document.documentelement.innerhtml);

0 Comments:

Post a Comment

<< Home