Показать сообщение отдельно
  #3 (permalink)  
Старый 02.11.2009, 09:59
Интересующийся
Отправить личное сообщение для marlic Посмотреть профиль Найти все сообщения от marlic
 
Регистрация: 02.11.2009
Сообщений: 19

<script language="javascript" type="text/javascript">
function ShowOrHide(d1) {
	  if (d1 != '') DoDiv(d1);
}

function DoDiv(id) {
	  var item = null;
	  if (document.getElementById) {
		item = document.getElementById(id);
	  } else if (document.all){
		item = document.all[id];
	  } else if (document.layers){
		item = document.layers[id];
	  }
	  if (!item) {
	  }
	  else if (item.style) {
		if (item.style.display == "none"){ item.style.display = ""; }
		else {item.style.display = "none"; }
	  }else{ item.visibility = "show"; }
}

function code(text) {
        var txtarea = document.post.body;
        text = '' + text + '';
        if (txtarea.createTextRange && txtarea.caretPos) {
                var caretPos = txtarea.caretPos;
                caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
                txtarea.focus();
        } else {
                txtarea.value  += text;
                txtarea.focus();
        }
}

</script>

ниже коды котор нужно будет вставить при нажатии
<a href="javascript:ShowOrHide("1")">Вставка</a>
<div id="1" style="display:none;">
<a href="javascript:code("<div class=&quot;menu1&quot;><img src=&quot;../loads/ext/dir.png&quot; alt=&quot;&quot; /> <strong>  </strong></div> ")">зеленые ссылки</a> 
<a href="javascript:code("<div class=&quot;b&quot;> </div>")">синее главное</a>

Последний раз редактировалось marlic, 02.11.2009 в 10:19.
Ответить с цитированием