Поддержка всех форумов о природе

Информация о пользователе

Привет, Гость! Войдите или зарегистрируйтесь.


Вы здесь » Поддержка всех форумов о природе » Галерея скриптов. » Замена надписей " Регистрация , форум " и т . д .


Замена надписей " Регистрация , форум " и т . д .

Сообщений 1 страница 9 из 9

1

Тут я выложу много чего полезного .

0

2

Форум:

Код:
<script>
<!--
indexof="Ваше слово" 
str = document.getElementById("navindex").innerHTML
pos = str.indexOf("Форум")
document.getElementById("navindex").innerHTML=str.substring(0,pos)+indexof+str.substring(pos+5,str.length-1)
-->
</script>

0

3

Регистрация:

Код:
<script>
<!--
regof="Ваше слово " 
str = document.getElementById("navregister").innerHTML
pos = str.indexOf("Регистрация")
document.getElementById("navregister").innerHTML=str.substring(0,pos)+regof+str.substring(pos+18,str.length-1)
-->
</script>

0

4

Вход :

Код:
<script>
<!--
vxodiof="Ваше слово" 
str = document.getElementById("navlogin").innerHTML
pos = str.indexOf("Войти")
document.getElementById("navlogin").innerHTML=str.substring(0,pos)+vxodiof+str.substring(pos+5,str.length-1)
-->
</script>

0

5

Выход:

Код:
<script>
<!--
valiof="Ваше слово" 
str = document.getElementById("navlogout").innerHTML
pos = str.indexOf("Выход")
document.getElementById("navlogout").innerHTML=str.substring(0,pos)+valiof+str.substring(pos+5,str.length-1)
-->
</script>

0

6

Участники:

Код:
<script>
<!--
userof="Ваше слово" 
str = document.getElementById("navuserlist").innerHTML
if( (pos=str.indexOf("Участники")) != -1 )
document.getElementById("navuserlist").innerHTML=str.substring(0,pos)+userof+str.substring(pos+9,str.length-1)
-->
</script>

0

7

Правила:

Код:
<script>
<!--
pravilof="Ваше сово" 
str = document.getElementById("navrules").innerHTML
pos = str.indexOf("Правила")
document.getElementById("navrules").innerHTML=str.substring(0,pos)+pravilof+str.substring(pos+14,str.length-1)
-->
</script>

0

8

КкиТт
Зачем отдельную тему создавать? >_<

0

9

tequiLa Boom написал(а):

Зачем отдельную тему создавать? >_<

чтобы не запуться !

0

Быстрый ответ

Напишите ваше сообщение и нажмите «Отправить»





Вы здесь » Поддержка всех форумов о природе » Галерея скриптов. » Замена надписей " Регистрация , форум " и т . д .