I have some elements that need to have the text inside editable, for this I am using the HTML 5 attribute contentEditable. I can\'t seem to do use jQuery for this using mult
If I can remember correctly, setting the contentEditable value on the parent would also cause all its children to become editable.
contentEditable
So doing this:
$('#container').attr("contentEditable", "true");
Should work.