JSFiddle - React, Tailwind, and code Playground
by Juan Muñoz
HTML
<span>Click aici</span>
JavaScript
$(function () {
$('span').live('click', function () {
var input = $('<input />', {
'type': 'text',
'name': 'unique',
'value': $(this).html()
});
$(this).parent().append(input);
$(this).remove();
input.focus();
});
$('input').live('blur', function () {
$(this).parent().append($('<span />').html($(this).val()));
$(this).remove();
});
});