Показать сообщение отдельно
  #12 (permalink)  
Старый 25.03.2015, 11:26
Аспирант
Посмотреть профиль Найти все сообщения от newuser1001
 
Регистрация: 24.03.2015
Сообщений: 92

Сообщение от cript
как в таком случае
В таком случае, надо сначала реализовать юзабельную версию ее. Например:
<html>
<head>
<style>
 div{
  background: blue
 }
</style>
</head>
<body>

<div>foo</div>
<div>foo</div>
<div>foo</div>
<div>foo</div>
<div>foo</div>
<div>foo</div>
<div id="foo">foo</div>

<script>

$=function(el){
  if(typeof(el)==="string") return $.create([].map.call(document.querySelectorAll(el), function(el){return el}))
  return $.create([el])
}
$.create=function(arr){var o=Object.create(this); o.arr=arr; return o}
$.hide=function(){this.arr.forEach(function(el){el.style.display="none"})}
$.show=function(){this.arr.forEach(function(el){el.style.display="block"})}

$("div").hide()
$(foo).show()

</script>

</body>
</html>
Ответить с цитированием