Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Aloha to edit contents on a client's website and want to remove all extra DOM elements and attributes when I save.

A paragraph tag goes from:

<p></p>

to:

<p id="79a2eed4-1d7d-55a9-1c44-d384d35edf4f" 
    class="aloha-editable aloha-editable-active" 
    contenteditable="true" style=""></p>

I want to remove all of those added elements. Is there a destroy call in the Aloha API that I have missed?

share|improve this question

1 Answer

up vote 1 down vote accepted

The following reverts an editable to its non-editable form

$('#editable').mahalo();

This should also remove the attributes added by aloha (classes, contenteditable=true, etc.).

I have added it to the official documentation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.