Hi everyone, I am new to jquery and im trying to do in-place editing (simple)
but I don’t know how to check if users click on the submit: b link.
Do you know a simple tutorial on how to create an editing system :) ?.
I have it now
$(function() {
$('#forum_dato a').click(function()
{
$('#data').html('<form action="..." method="post"><textarea name="data">' +
$('#data').text() +
'</textarea><input type="submit" value="Edit"></form>');
return false;
})
})
Do I need to use some kind of ajax or which is better :)?
Sjmon source
share