JSFiddle - React, Tailwind, and code Playground
by forgetcolor
HTML
<span class='tst'>span</span>
JavaScript
var tst = $('.tst');
console.log(tst.selector);
// prints '.tst'
$('.tst').each(function() { console.log($(this).selector);});
// prints undefined