Dear visitor, welcome to Marktplatz der Mikronationen. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.
|
|
Source code |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
function AddText(NewCode,theform)
{
if(document.selection)
{
theform.focus();
document.selection.createRange().text=NewCode;
document.selection.createRange().select();
}
else if (theform.selectionStart || theform.selectionStart == '0')
{
intStart = theform.selectionStart;
intEnd = theform.selectionEnd;
theform.value = (theform.value).substring(0, intStart) + NewCode + (theform.value).substring(intEnd, theform.value.length);
theform.selectionStart=theform.selectionEnd=intStart+NewCode.length;
theform.focus();
}
else
{
theform.value += NewCode;
}
}
|
Wenn man beim wbb1 einen Smilie oder ein BB-Code einfügt, dann macht der den Code immer an das Ende und nicht an die Stelle, wo der Cursor ist.
This post has been edited 1 times, last edit by "Wernher Graf von Perleburg" (Feb 9th 2011, 1:30am)
This post has been edited 5 times, last edit by "Wernher Graf von Perleburg" (Feb 9th 2011, 5:43am)