Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div class="container">
    <div class="myClass">Div 1</div>
    <div class="myClass">Div 2</div>
    <div class="myClass">Div 3</div>
    <div class="myClass">Div 4</div>
    <div class="myClass">Div 5</div>
  </div>
</body>
</html>
 
.myClass {
  background-color: #000;
  color: #fff;
  width: 100px;
  height: 40px;
  border: 1px solid #fff;
}
 
// Click on any div element and see the output
document.querySelectorAll('.myClass').forEach((e) => { // Add the event listener to all the elements with class .myClass
  e.addEventListener('click', (event) => {
    var element = event.target;
    var index = Array.from(element 
      .parentNode // Get the parent node of the clicked element
      .querySelectorAll('.' + element.className)) // Select all the elements inside the parent node (siblings) with the same class name of the clicked element
      .indexOf(element) + 1; // Look for the index of the clicked element, + 1 
    console.log(index);
  });
});
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers