JSFiddle - React, Tailwind, and code Playground

HTML

<input id="AAA_RandomString_BBB" type="text" />
<input id="AAA_RandomString_CCC" type="text" />
<input id="AAA_RandomString_DDD" type="text" />
<input class="AAA" id="AAA_RandomString_EEE" type="text" />
<input class="AAA" id="AAA_RandomString_FFF" type="text" />
<!--class="AAA" is the redunt class added -->

JavaScript

$('[id^="AAA_"]').click(function() {
alert( $(this).attr('id')+' .click() called.' );
});

 $('.AAA').click(function() {
alert( $(this).attr('id')+' .click() called.' );
});