Показать сообщение отдельно
  #2 (permalink)  
Старый 25.12.2014, 02:22
Профессор
Посмотреть профиль Найти все сообщения от krutoy
 
Регистрация: 09.11.2014
Сообщений: 610

<html>
<head>
<style>
.tab{background: grey}
.bar{color: white}
</style>
</head>
<body>


<span class="tab" id="inbox">in</span>
<span class="tab" id="outbox">out</span>


<script>

c=document.querySelectorAll("span.tab")

if(/\?\w{4}1$/.test(location)){
for(var i=0; i<c.length; i++)  if(c[i].id==="inbox") c[i].className+=" bar"
}

if(/\?\w{4}2$/.test(location)){
for(var i=0; i<c.length; i++)  if(c[i].id==="outbox") c[i].className+=" bar"
}

</script>
</body>
</html>

Последний раз редактировалось krutoy, 25.12.2014 в 02:48.
Ответить с цитированием