JSFiddle - React, Tailwind, and code Playground
by skeurentjes
HTML
<html>
<head>
<script>
$(document).ready(function() {
$("li").hide();
});
</script>
</head>
<body>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
<li>Item 5</li>
</ul>
</body>
</html>