Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
  <style>
    .B\26 W\3F {
      color: blue;
    }
  </style>
</head>
<body>
  <p>In a moment, these turn green:</p>
  <div class="B&W?">B&amp;W?</div>
  <div class="B&W?">B&amp;W?</div>
  <div class="B&W?">B&amp;W?</div>
  <script>
    setTimeout(function() {
      var list = document.querySelectorAll(".B\\26 W\\3F");
      var n;
      for (n = 0; n < list.length; ++n) {
        list[n].style.color = "green";
      }
    }, 1000);
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers