JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" />
<div id='tester'>Test:</div>
JavaScript
$('input[type="text"]').live('focus', function(event) {
$('#tester').html( $('#tester').html() + "_*" );
});
<input type="text" />
<div id='tester'>Test:</div>
$('input[type="text"]').live('focus', function(event) {
$('#tester').html( $('#tester').html() + "_*" );
});