
23.04.2007, 20:31
|
|
♠ ♦ ♣ ♥
Регистрация: 18.05.2006
Сообщений: 1,828
Провел на форуме: 8042357
Репутация:
3742
|
|
Зато работает..
я вам не все ф-ии кинул просто..
априбавим к тому.. и все отлично работает
Код:
var AddTxt = "";
function getActiveText()
{
setfocus();
if (!is_ie || (is_ie && !document.selection))
{
return false;
}
var sel = document.selection;
var rng = sel.createRange();
if (rng != null && (sel.type == "Text" || sel.type == "None"))
{
text = rng.text;
}
if (rng != null && theform.message.createTextRange)
{
theform.message.caretPos = rng.duplicate();
}
return true;
}
function setfocus()
{
theform.message.focus();
}
__________________
Привет! Меня зовут Джордж, и я хотел бы рассказать вам про реинкарнацию (ц) 2x2
|
|
|