JSFiddle - React, Tailwind, and code Playground

by jim ulle

HTML

<select><option>1</option><option>2</option></select>

JavaScript

$('body').on('focus', 'select', function(){ 
    $('body').append('<p>hello</p>');
});