Nová ukázka
Reset
Načíst z URL
Uložit a získat odkaz
Vztahuje se k…
Nevyplňujte
Napiště „nejsem robot“
▶
Přepnout zobrazení
Výsledek
<p> <button onclick="format('bold')">Tučně</button> <button onclick="format('italic')">Kurzíva</button> <button onclick="format('StrikeThrough')">Škrtnout</button> <button onclick="format('createlink')">Odkaz</button> <button onclick="format('insertimage')">Obrázek</button> <button onclick="alert(getContent())">Zobrazit HTML</button> </p> <iframe id="editor" class="editor" frameborder="1"></iframe>
HTML
Autoformát
Standardní režim
Mobilní zobrazení
CSS
Autoformát
CSS reset
Až na konci
var editor, iframe; window.onload = function() { iframe = document.getElementById("editor"); editor = iframe.contentWindow.document; editor.designMode = "on"; } function format(akce) { iframe.contentWindow.focus(); editor.execCommand(akce, false, null); } function getContent() { return editor.body.innerHTML; }
J
ava
S
cript
Autoformát
jQuery
Umístění JS
window.onload
</head>
</body>