function bbcodetekli(kod,alan) { var alan; tt = document.getElementById(alan); if (document.getSelection) // firefox { var once = tt.value.substring(0, tt.selectionStart); var sonra = tt.value.substr(tt.selectionEnd); var ara = tt.value.substring(tt.selectionStart, tt.selectionEnd); tt.value = once + sonra + kod; }
else // IE { var ara = document.selection.createRange().text; tt.focus(); var sec = document.selection.createRange(); sec.text = kod ; } return; }
burda smiley ekliyorum ama en sona ekliyo tıkladıgım yere eklemesini nasıl yaparım?
var alan;
tt = document.getElementById(alan);
if (document.getSelection) // firefox
{
var once = tt.value.substring(0, tt.selectionStart);
var sonra = tt.value.substr(tt.selectionEnd);
var ara = tt.value.substring(tt.selectionStart, tt.selectionEnd);
tt.value = once + sonra + kod; }
else // IE
{
var ara = document.selection.createRange().text;
tt.focus();
var sec = document.selection.createRange();
sec.text = kod ; }
return;
}
burda smiley ekliyorum ama en sona ekliyo tıkladıgım yere eklemesini nasıl yaparım?