JSFiddle - React, Tailwind, and code Playground
HTML
<header>header</header>
JavaScript
$("header").on('dblclick', function() {
$(this).prop('contenteditable', true);
window.getSelection().removeAllRanges();
$(this).focus();
});
<header>header</header>
$("header").on('dblclick', function() {
$(this).prop('contenteditable', true);
window.getSelection().removeAllRanges();
$(this).focus();
});