Create edit button for any HTML page?

  • Thread starter Thread starter austinw80
  • Start date Start date
A

austinw80

Guest
I want to make an HTML page editable by anyone by simply pressing an edit button on the page. Is this possible? If so, how do I do it? Thanks.
 
It's actually possible to do this by introspecting the document's elements via Javascript. But the end product will not be savable unless you write additional server side storage code.

Resource - http://jquery.com/ - $(document).html(); should do the trick.
 
Back
Top