JSFiddle - React, Tailwind, and code Playground

by rhudecaviar

HTML

<!DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
  <meta charset="utf-8">
  <title>Add a tag at the beginning of the list item</title>
</head>
<body>
<ui>
<li>Html Tutorial</li>
<li>Mongodb Tutorial</li>
<li>Python Tutorial</li>
</body>
</html>

JavaScript

$( 'li' ).each(function( index, elem ) {
    $( elem ).prepend( '' + index + ': ' );
});