JSFiddle - React, Tailwind, and code Playground
by Rich Costello
HTML
<div id="fullname">Amazing Spider man</div>
JavaScript
$('#fullname').click(function(){
var name = $(this).text();
$(this).html('');
$('<input></input>')
.attr({
'type': 'text',
'name': 'fname',
'id': 'txt_fullname',
'size': '30',
'value': name
})
.appendTo('#fullname');
$('#txt_fullname').focus();
});
$(document).on('blur','#txt_fullname', function(){
var name = $(this).val();
//alert('Make an AJAX call and pass this parameter >> name=' + name);
$('#fullname').text(name);
});