Your jsfiddle example has been updated to the correct class name and it works.
<div class="container "> <div class="container_settings_inner"> <h4 class="fred"><div class="iconnameserver"></div> Test1</h4> </div> </div>
and
$(document).ready(function() { $("#edit").click(function() { $('.container_settings_inner').attr('contentEditable','true'); }); });
You can focus on the .container_settings_inner h4 attribute when they become editable so that the user knows or lights them up a bit.
http://jsfiddle.net/QqbyS/
rapadura
source share