I have a page that uses the jquery form plugin (http://www.malsup.com/
jquery/form/) to dynamically submit the form and then display the
submitted form on the same page.  I use the edit-in-place pluging
developed by (http://15daysofjquery.com/edit-in-place-with-ajax-using-
jquery-javascript-library/15/).  My problem is that I cannot edit in
place the items submitted with the form plugin without refreshing the
page.  I did discover I could make the items clickable (turning into
textarea's) by adding this set clickable function to be executed after
the form is submitted
$(".gr").each(function(i){
   var day =  $("[EMAIL PROTECTED]").val();
        setClickable(this, i, day);
})
The items are now clickable, but when I save submit the edited text it
doesn't save in it the database.  Any thoughts?

Reply via email to