datamatrix
Registered
Търся начин да вмъквам бб кода за емотиконка на позицията на кърсора, както е по фирумите.
Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
datamatrix каза:Търся начин да вмъквам бб кода за емотиконка на позицията на кърсора, както е по фирумите.
datamatrix каза:Да. Insert at text cursor.
<head>
<script>
function storeCaret (textEl) {
if (textEl.createTextRange)
textEl.caretPos = document.selection.createRange().duplicate();
}
function insertAtCaret (textEl, text) {
if (textEl.createTextRange && textEl.caretPos) {
var caretPos = textEl.caretPos;
caretPos.text =
caretPos.text.charAt(caretPos.text.length - 1) == ' ' ?
text + ' ' : text;
}
else
textEl.value = text;
}
</script>
</head>
<body>
<form name="form">
<textarea name="textarea" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">
</textarea>
<input type="text" name="text" value="text">
<input type="button" value="insert" onclick="insertAtCaret(this.form.textarea,this.form.text.value);">
</form>
</body>