Собственно, сабж. Хотелось бы поиметь у себя на сайте в комментариях кнопочку "цитировать" а-ля как тут)) Выделяем и нажимаем "цитировать". МБ у кого-нибудь есть готовый код?
Тормозишь Код (Text): <a href="javascript:quoteSelection('shreck')" onmouseover="catchSelection()">цитировать</a> function catchSelection() { if (window.getSelection) { selection = window.getSelection().toString(); } else if (document.getSelection) { selection = document.getSelection(); } else if (document.selection) { selection = document.selection.createRange().text; } } function quoteSelection(name) { if (selection) { emoticon_wospaces('[quote="'+name+'"]' + selection + '[/quote]\n'); selection = ''; document.post.message.focus(); return; } else { alert(l_no_text_selected); return; } }