Code
<script>
function bbLOL(id,t1,t2,t3,s3,v3){
var Open='['+t1+']'+'['+t2+']'+'['+t3+' '+s3+'="'+v3+'"]';
var Close='[/'+t3+']'+'[/'+t2+']'+'[/'+t1+']';
var doc = document.getElementById(id);
doc.focus();
if(window.attachEvent && navigator.userAgent.indexOf('Opera') === -1){
var s = doc.sel;
if(s){
var l = s.text.length;
s.text = Open + s.text + Close;
s.moveEnd("character", -Close.length);
s.moveStart("character", -l);
s.select()
}
}
else{
var ss = doc.scrollTop;
sel1 = doc.value.substr(0, doc.selectionStart);
sel2 = doc.value.substr(doc.selectionEnd);
sel = doc.value.substr(doc.selectionStart, doc.selectionEnd - doc.selectionStart);
doc.value = sel1 + Open + sel + Close + sel2;
doc.selectionStart = sel1.length + Open.length;
doc.selectionEnd = doc.selectionStart + sel.length;
doc.scrollTop = ss
}
return false;
}
</script>
<input type="button" value="Быдло стиль текста on" onClick="bbLOL('message','b','u','font','size','18')">
id - это id формы, где обробляется текст