i wrote a custom inline editor, and i have a problem with it. If i clcik on save button after then i can't edit it again, how can i fix it to work? And can you help me, to make it multiple? I mean, this work only with 1 div on a page, not more than 1. Here is the code:
$(function()
{
var fut = false;
$('.jq_edit').live('click', function() {
if (fut==true){ } else {
var tartalom = $(this).html();
$(this).html("<input type='text' value='"+tartalom+"'><input type='button' value='Save' class='save'>");
fut=true;
}
});
$('.save').live('click', function() {
var mtartalom=$(this).prev().attr('value');
$('.jq_edit').html(mtartalom);
$('.jq_edit').append(" <span id='ok'><img src='accept.png'> Success</span>");
$('#ok').delay(1500).fadeOut(500);
});
});
And the html:
<body>
<div class="jq_edit">adsadasd</div>
</body>
Thank you for the help!