<style> input:focus { counter-increment: c; }
</style>
<script>
function onLoad() {
// For emulating the traditional behavior, collapse Selection to end of the
// text node at end of the <body>, i.e., end of the text node after the
// <input contenteditable>.
getSelection().collapse(document.body, document.body.childNodes.length);
document.querySelector("input[type=number][contenteditable]").select();
}
</script>
<body onload="onLoad()">
<input type="number" contenteditable>
</body>
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.