JSFiddle - React, Tailwind, and code Playground
by joshmoto
HTML
<li class="gfield col-12 upload-file-wrapper site-logo-header field_sublabel_below field_description_below gfield_visibility_visible">
Field
</li>
JavaScript
// document ready
(function($) {
$('.gfield').click(function() {
var field_name = $(this).attr('class').match(/site-logo[\w-]*\b/);
alert(field_name);
});
})(jQuery);