
08.06.2009, 01:04
|
|
Новичок
Регистрация: 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();
}
сама вставка картинки
|
|
|