hack3p,
Забирайте как обычно, это же обычный HTML-элемент. Например
<html>
<head>
<style>
.editable{
width: 50px;
height: 20px;
border: 1px solid black
}
</style>
</head>
<body>
input some text:
<div class="editable" id="src">foo</div>
<br>
<button id="show">show</button>
<br>
result:
<br>
<div id="info" ></div>
<script>
;[].forEach.call(document.querySelectorAll(".editable"), function(x){x.contentEditable="true"})
show.onclick=function(){
info.innerHTML=src.innerHTML
}
</script>
</body>
</html>