[jQuery] Jeditable across td's

[jQuery] Jeditable across td's


Hi all,
Thanks to this topic:
http://groups.google.com/group/jquery-en/browse_thread/thread/7c26ef858ec47984
I managed to achieve to change the trigger for the Jeditable items in
DIVs.
Now i've created an overview of files in a folder. It's presented in a
table.
But now the following code doesn't work anymore:
$(".edit").editable("file.php", {
event : "edit"
});
$(".edit_trigger").bind("click", function() {
$(this).prev().trigger("edit");
});
My table roughly looks like this:
<td>
<a href="/testdir/test_in_testdir'" class="edit"
id="test_in_testdir">test_in_testdir</a>
</td>
<td >
<a href="javascript:void(0);" class="edit_trigger">Edit me!!</a>
</td>
Thanks, Frizzle.