JSFiddle - React, Tailwind, and code Playground

by irwan dwiyanto

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<ul>
  <li>foo</li>
  <li>bar</li>
</ul>

JavaScript

$( "li" ).each(function( index ) {
  console.log( index );
});