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
For some reason in IE10 only this seemed to work:
$('#container').get(0).contentEditable = "true";
Why attr didn't work I do not know.