rumit,нет...запомни BB-коды используют для внутреннего блока(текста).
Тот способ что тебе нужен у меня на сайте реализовал там с помощью java-скрипта все работает.
function show_hide(elem) {
obj = document.getElementById(elem);
if( obj.style.display == "none" ){
obj.style.display = "block";
}else{
obj.style.display = "none";
}
}
blackvj (09.06.2012/10:06)как сюда всунуть сылки?
function show_hide(elem) { obj = document.getElementById(elem); if( obj.style.display == "none" ){ obj.style.display = "block"; }else{ obj.style.display = "none"; } }
Мой