I have a table made of:
<td class='editable' id='<?=data['id']?>' col='<?=data['col_name']?>'>Content</td>
$data
is the mysql_fetch_assoc
of the $query
, when I click on <td>
, the jeditable plugin activates in FF or Chrome but doesn't work in IE.
$(function () {
$(".editable").click(function (event) {
$(this).editable('ajax_save.php',{
id : 'id',
name : $(this).attr('col'),
submit : 'Save',
cancel : 'Cancel',
tooltip : ''
});
});
});
I couldn't figure out why this is happening, can you please help me out?
Thanks