JSFiddle - React, Tailwind, and code Playground

by Ranganadh Paramkusam

HTML

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<p class="myChild">one</p>
<p class="myChild">two</p>
<p class="myChild">three</p>

<script>
$(document).ready(function(){


});
</script>
</body>
</html>

JavaScript

$(".myChild:not(:eq(0))").each(function(){
alert($(this).text());
})