[ANSWERED] How to prevent contenteditable from being passed down to children
Solution 1 : Try putting content editable false on your children: <div contenteditable="true"> <p>You can edit me</p> </div> <div contenteditable="true"> <p contenteditable="false">You can't edit me</p> </div> Solution 2 : <div…