Hi,
I have the following code:

PHP Code:
$('#mision').editable({
            
url'ajax.php',
            
type'post',
            
asynctrue,
            
cachefalse,
                        
pk1,
            
success: function(pk){
            
//
        

});

$(
'#mision_pencil').click(function (e) {
            
e.stopPropagation();
            
e.preventDefault();
            $(
'#mision').editable('toggle');
        }); 
HTML FILE
PHP Code:
<tr>
                                    <
td width="70%">
                                        <
div id="mision" data-pk="1" data-type="wysihtml5" data-toggle="manual" data-original-title="...">
                                            <
h3>MISIÓN</h3>
                                            
texto
                                            
<p>aquí hay más texto</p>
                                        </
div>
                                    </
td>
                                    <
td width="30%">
                                        <
a href="javascript:;" id="mision_pencil">
                                        <
class="fa fa-pencil"></i> [editar] </a>
                                    </
td>
                                </
tr
My database is updated but the parameter "mision" is always empty I think is not passed by POST.
Any clue?

Bless