[jQuery] Strange behavior with html() in IE.

[jQuery] Strange behavior with html() in IE.


Hi guys, how are ya.
http://15daysofjquery.com/edit-in-place-with-ajax-using-jquery-javascript-library/15/
, have some nice edit in place example with jquery so i tried to use
it at my proyect, but i found some issues with the function html(). at
IE.
I'm new at jquery, but decided to learn more and more day after day,
so here's my problem.
For example, check this.
<html>
<head>
<script type="text/javascript" src="jquery-1.2.1.min.js"></script>
<title>Ie Problem</title>
<script type="text/javascript">
$(function(){
    $(".edit").each(function(i){
    setClickable(this, i);
    })
})
function setClickable(obj,i){
    $(obj).click(function(){
    revert = "<tr>"+$(this).parent().parent().html()+"<\/tr>";
    name = $(this).parent().prev().prev().prev().text();
    age = $(this).parent().prev().prev().text();
    comments = $(this).parent().prev().text();
    editable = "<tr><td><input type='text' id='name' value='"+name+"'/><\/
td>";
    editable += "<td><input type='text' id='age' value='"+age+"'/><\/
td>";
    editable += "<td><input type='text' id='comments' value='"+comments
+"'/><\/td>";
    editable += "<td><input type='button' class='save' value='Editar' /