admin (2008-10-16 22:23:29) How to insert BBcode / Textarea
How to insert BBcode tags around the selected text in a textarea ?
After having searched scripts to answer my question (more or less simple codes with the Caret method and so on) and encountered some problems & bugs, I have rewritten one small code that works fine on these forums, here is the result :
function addText(Text)
{
var obj = document.form.message;
obj.focus();
if (document.selection && document.selection.createRange) // Internet Explorer
{
sel = document.selection.createRange();
if (sel.parentElement() == obj) sel.text = Text;
}
else if (obj != "undefined") // Firefox
{
var longueur = parseInt(obj.textLength);
var selStart = obj.selectionStart;
var selEnd = obj.selectionEnd;
obj.value = obj.value.substring(0,selStart) + Text + obj.value.substring(selEnd,longueur);
}
else obj.value += Text;
obj.focus();
}
function addTags(Tag, fTag)
{
var obj = document.form.message;
obj.focus();
if (document.selection && document.selection.createRange) // Internet Explorer
{
sel = document.selection.createRange();
if (sel.parentElement() == obj) sel.text = Tag + sel.text + fTag;
}
else if (obj != "undefined") // Firefox
{
var longueur = parseInt(obj.textLength);
var selStart = obj.selectionStart;
var selEnd = obj.selectionEnd;
FICGS is also a Free Internet Correspondence Games Server, where you can play chess online for free in rated class tournaments and a unique correspondence chess world championship. Special events (Go, chess 960, big chess) and tournaments with money prizes are also organized.