JSFiddle - React, Tailwind, and code Playground
HTML
<li id="thisisid">Something</li>
JavaScript
$('body').append(
'<br />Id is: ' + $('li').attr('id') // this is the code
)
<li id="thisisid">Something</li>
$('body').append(
'<br />Id is: ' + $('li').attr('id') // this is the code
)