JSFiddle - React, Tailwind, and code Playground
HTML
<ul id="large_box_custom_list">
<li id="8" value="8" class="large_box">Item 1</li>
<li id="13" value="13" class="large_box">Item 2</li>
</ul>
JavaScript
$(function() {
$('li.large_box').css('cursor', 'pointer')
.click(function() {
var show_id = $(this).val();
alert(show_id);
});
});