i use this
http://www.mudaimemo.com/p/quickedit/#
and it work good
the problem is
i want use this is renaming some rows
like this
my name ok!! (edit | delete| rename)
now this will be too many like that
1my name ok!! (edit | delete| rename)
2my name ok!! (edit | delete| rename)
3my name ok!! (edit | delete| rename)
4my name ok!! (edit | delete| rename)
5my name ok!! (edit | delete| rename)
6my name ok!! (edit | delete| rename)
and if i make each one like that
$(document).ready(function(){
// formnotifier
$('#1').quickEdit();
$('#2').quickEdit();
$('#3').quickEdit();
$('#4').quickEdit();
$('#5').quickEdit();
$('#6').quickEdit();
});
is there any way to make it like that
$('#rename').find().prev(".a").quickEdit();
i dont understand
can any one make it for me
the job is
make it auto edit without repeat it
If you look at their examples they have in HTML
and they execute the javascript
To do this with multiple elements you just have to add a class to all
aelements and use that as the jquery selector …HTML
Javascript