Показать сообщение отдельно
  #12 (permalink)  
Старый 25.02.2009, 00:08
zerg
 
Сообщений: n/a

Zibba, не работает, пробовал заместо textInd подставлять 1 нифига
а передовать надо так
onclick="down(121,0);
onclick="down(122,1);
хотя я с пробелом и без него пробовыл не выходит.

так делал тож ничего
<script type="text/javascript">
var top[];
var top[0] = 0;
var top[1] = 0;

 
    function up(index){
textInd=1;
if(index==121){textInd=0;}
        var text = document.getElementById(index);
        top[textInd] = top[textInd] - 30;
        text.style.top = top[textInd]+'px';
    }
 
    function down(index){
textInd=1;
if(index==121){textInd=0;}
        var text = document.getElementById(index);
        top[textInd] = top[textInd] + 30;
        text.style.top = top[textInd]+'px';
    }
</script>
Ответить с цитированием