27 lines
457 B
HTML
27 lines
457 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
|
|
<head>
|
|
<link type="text/css" rel="stylesheet" href="my.css">
|
|
<meta charset="utf-8">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul>
|
|
<li>Click the div to edit.</li>
|
|
<li>Enter or blur saves the result.</li>
|
|
</ul>
|
|
|
|
HTML is allowed.
|
|
|
|
<div id="view" class="view">Text</div>
|
|
|
|
<script>
|
|
// ...your code...
|
|
// Note: <textarea> should have class="edit"
|
|
// my.css has styles to make it the same size as div
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|