File Uploaded Name Rename
**************************Jquery********************************
$(function () {
$(".edit").on('click', 'span', function () {
var input = $('<input />', {
'type': 'text',
'name': 'unique',
'value': $(this).html()
});
$(this).parent().append(input);
$(this).remove();
input.focus();
});
$(".edit").on('blur', 'input', function () {
$(this).parent().append($('<span />').html($(this).val()));
$(this).remove();
});
});
***********************HTML*************************************
<div class="edit">
<span class="">TESTING</span>
</div>
$(function () {
$(".edit").on('click', 'span', function () {
var input = $('<input />', {
'type': 'text',
'name': 'unique',
'value': $(this).html()
});
$(this).parent().append(input);
$(this).remove();
input.focus();
});
$(".edit").on('blur', 'input', function () {
$(this).parent().append($('<span />').html($(this).val()));
$(this).remove();
});
});
***********************HTML*************************************
<div class="edit">
<span class="">TESTING</span>
</div>
Comments
Post a Comment