Показать сообщение отдельно

  #9  
Старый 08.06.2009, 01:04
Rednoise
Новичок
Регистрация: 28.03.2007
Сообщений: 29
Провел на форуме:
62416

Репутация: 41
По умолчанию

ну да а это

Код:
$('.image', tb).click(function(){ 
var p='smile.gif';
formatText(iframe, 'InsertImage', p);
return false; });

 function formatText(iframe, command, option) {
        iframe.contentWindow.focus();
        try{
            iframe.contentWindow.document.execCommand(command, false, option);
        }catch(e){console.log(e)}
        iframe.contentWindow.focus();
    }
сама вставка картинки
 
Ответить с цитированием